Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 6, 2023
1 parent ce18aad commit 5753c98
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/hmf/cosmology/growth_factor.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ def growth_rate(self, z):
-1
- self.cosmo.Om(z) / 2
+ self.cosmo.Ode(z)
+ 5 * self.cosmo.Om(z) / (2 * self.growth_factor(z) * (1 + z)))
+ 5 * self.cosmo.Om(z) / (2 * self.growth_factor(z) * (1 + z))
)

def growth_rate_fn(self, zmin=0):
"""
Expand Down

0 comments on commit 5753c98

Please sign in to comment.