Private
Public Access
1
0
This commit is contained in:
2024-05-25 15:14:16 +02:00
parent 7b861799c2
commit 896d9423e1
3 changed files with 13 additions and 3 deletions

View File

@@ -2229,7 +2229,8 @@ def history_view_data(request, userid=0):
df = df.with_columns(pl.col('time').diff().clip(lower_bound=0).alias("deltat"))
except KeyError: # pragma: no cover
pass
except ColumnNotFoundError:
pass
totalmeters, totalhours, totalminutes, totalseconds = get_totals(
g_workouts)