Private
Public Access
1
0
This commit is contained in:
2025-11-10 17:48:19 +01:00
parent f04f6dfc26
commit fba6ea22d0
2 changed files with 4 additions and 1 deletions

Binary file not shown.

View File

@@ -772,7 +772,10 @@ def cpdata(workouts, options):
try:
tvalue = int(60*(tvalue-minutevalue))
except TypeError: # pragma: no cover
tvalue = int(60*tvalue)
try:
tvalue = int(60*tvalue)
except TypeError:
tvalue = 0
if hourvalue >= 24: # pragma: no cover
hourvalue = 23