Skip to content

Commit

Permalink
ran black (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyod authored Feb 10, 2022
1 parent 10c860d commit fd68009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion streprogen/modeling.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ def wilks(lifted_kg, bodyweight_kg, gender="male"):
f = -9.054e-8

x = bodyweight_kg
coeff = 500 / (a + b * x + c * x ** 2 + d * x ** 3 + e * x ** 4 + f * x ** 5)
coeff = 500 / (a + b * x + c * x**2 + d * x**3 + e * x**4 + f * x**5)

return round(coeff * lifted_kg, 2)

Expand Down

0 comments on commit fd68009

Please sign in to comment.