Private
Public Access
1
0
This commit is contained in:
2023-10-27 16:48:30 +02:00
parent 6a6511eeac
commit d999378f9e
3 changed files with 3 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ from rowers import mytypes
from rowers.tasks import handle_strava_sync, fetch_strava_workout from rowers.tasks import handle_strava_sync, fetch_strava_workout
from stravalib.exc import ActivityUploadFailed, TimeoutExceeded from stravalib.exc import ActivityUploadFailed, TimeoutExceeded
from rowers.rower_rules import is_workout_user, ispromember from rowers.rower_rules import is_workout_user, ispromember
from rowers.utils import get_strava_stream from rowers.utils import get_strava_stream, custom_exception_handler
from rowers.utils import myqueue, dologging from rowers.utils import myqueue, dologging
#from rowers.imports import * #from rowers.imports import *

Binary file not shown.

View File

@@ -898,6 +898,8 @@ def ps_dict_order_dict(d, short=False):
def ps_dict_order(d, short=False, rower=None, html=True): def ps_dict_order(d, short=False, rower=None, html=True):
sdict = collections.OrderedDict({}) sdict = collections.OrderedDict({})
steps = d['steps'] steps = d['steps']
if steps is None:
steps = []
ftp = 200 ftp = 200
powerzones = None powerzones = None