Skip to content

Commit

Permalink
addressing Carlos' comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Javier Sanchez authored and Javier Sanchez committed Jul 22, 2024
1 parent adff79b commit aa7c0b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tjpcov/covariance_gaussian_fsky.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def get_binning_info(self, binning="linear"):
# TODO: This should be obtained from the sacc file or the input
# configuration. Check how it is done in TXPipe:
# https://github.com/LSSTDESC/TXPipe/blob/a9dfdb7809ac7ed6c162fd3930c643a67a
out = super().get_binning_info()
out = self.get_binning_info()
if out is not None:
ell = out[0]
ell_eff = out[1]
Expand Down

2 comments on commit aa7c0b7

@vitenti
Copy link

@vitenti vitenti commented on aa7c0b7 Jul 31, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could this result in infinite recursion?

@fjaviersanchez
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point... I don't know

Please sign in to comment.