You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
elif (cf is not None) and (cf2 is not None) and (cf == cf2):
# both have cosmo_factor, and they match:
pass
should be:
elif (cf is not None) and (cf2 is not None) and ((cf == cf2) or (cf is None and cf2 is None)):
# both have cosmo_factor, and they match, or neither has cosmo_factor:
pass
The text was updated successfully, but these errors were encountered:
In function
_return_without_cosmo_factor
this:should be:
The text was updated successfully, but these errors were encountered: