Skip to content

Commit

Permalink
Fixes typo in recovery type
Browse files Browse the repository at this point in the history
  • Loading branch information
jahofmann committed Jan 2, 2022
1 parent 72fd37b commit df17ccb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trainaspower/trainasone.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def get_workout(workout_url: str, date: datetime.date, config: models.Config) ->


def convert_steps(steps, config: models.Config, perceived_effort: bool) -> Generator[models.Step, None, None]:
recovery_step_types = ["REST", "REOVERY", "COOLDOWN"]
recovery_step_types = ["REST", "RECOVERY", "COOLDOWN"]
active_step_types = ["ACTIVE", "INTERVAL"]
for step in steps:
if step["type"] == "WorkoutRepeatStep":
Expand Down

0 comments on commit df17ccb

Please sign in to comment.