]> Nutra Git (v2) - nutratech/cli.git/commitdiff
use ≤ character instead of <=
authorShane Jaroch <chown_tee@proton.me>
Tue, 12 Dec 2023 18:11:58 +0000 (13:11 -0500)
committerShane Jaroch <chown_tee@proton.me>
Tue, 12 Dec 2023 18:11:58 +0000 (13:11 -0500)
ntclient/services/calculate.py

index 8fc93228f08f190789175a84f51fcc0ae5c722f1..72a3d2c884c56299a5f77db8a278cf81a9e924b3 100644 (file)
@@ -112,7 +112,7 @@ def orm_dos_remedios(weight: float, reps: int) -> dict:
     }
 
     # Compute the 1-rep max
-    # NOTE: this should be guaranteed by arg-parse to be an integer, and 0 < n <= 20
+    # NOTE: this should be guaranteed by arg-parse to be an integer, and 1 ≤ n ≤ 20
     one_rm = round(
         weight / _max_rep_ratios[reps],
         1,