Skip to content

Commit

Permalink
fix test, range(1, 20) -> range(1, 20 + 1)
Browse files Browse the repository at this point in the history
  • Loading branch information
gamesguru committed Dec 15, 2023
1 parent 4839d9a commit f988fed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ntclient/services/calculate.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# The rep values used in the calculation
COMMON_N_REPS_MIN = 1
COMMON_N_REPS_MAX = 20
COMMON_N_REPS = range(COMMON_N_REPS_MIN, COMMON_N_REPS_MAX)
COMMON_N_REPS = range(COMMON_N_REPS_MIN, COMMON_N_REPS_MAX + 1)
# common_n_reps = (1, 2, 3, 5, 6, 8, 10, 12, 15, 20)


Expand Down

0 comments on commit f988fed

Please sign in to comment.