Private
Public Access
1
0

lots a small stuff

This commit is contained in:
Sander Roosendaal
2021-04-26 19:35:11 +02:00
parent 594ee6239a
commit 62d06a2439
33 changed files with 144 additions and 149 deletions

View File

@@ -377,7 +377,7 @@ dtypes = {}
for name,d in rowingmetrics:
if d['numtype'] == 'float':
dtypes[name] = float
elif d['numtype'] == 'int':
elif d['numtype'] == 'int': # pragma: no cover
dtypes[name] = int
axesnew = [
@@ -479,7 +479,7 @@ This value should be fairly constant across all stroke rates.""",
def calc_trimp(df,sex,hrmax,hrmin,hrftp):
def calc_trimp(df,sex,hrmax,hrmin,hrftp): # pragma: no cover
if sex == 'male':
f = 1.92
else: