fix
This commit is contained in:
@@ -3996,7 +3996,11 @@ def fetch_strava_workout(stravatoken, oauth_data, stravaid, csvfilename, userid,
|
||||
df.sort('TimeStamp (sec)')
|
||||
|
||||
row = rowingdata.rowingdata_pl(df=df)
|
||||
row.write_csv(csvfilename, compressed=False)
|
||||
try:
|
||||
row.write_csv(csvfilename, compressed=False)
|
||||
except ComputeError:
|
||||
row = rowingdata.rowingdata(df=df)
|
||||
row.write_csv(csvfilename, compressed=False)
|
||||
|
||||
# summary = row.allstats()
|
||||
# maxdist = df['cum_dist'].max()
|
||||
|
||||
Reference in New Issue
Block a user