Skip to content

Commit dddf0b9

Browse files
committed
Run lint and format
1 parent 2fddaf0 commit dddf0b9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

demo.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2067,7 +2067,9 @@ def clean_step_ids(workout_segments):
20672067

20682068
except FileNotFoundError:
20692069
print(f"❌ File not found: {config.workoutfile}")
2070-
print("ℹ️ Please ensure the workout JSON file exists in the test_data directory")
2070+
print(
2071+
"ℹ️ Please ensure the workout JSON file exists in the test_data directory"
2072+
)
20712073
except json.JSONDecodeError as e:
20722074
print(f"❌ Invalid JSON format in {config.workoutfile}: {e}")
20732075
print("ℹ️ Please check the JSON file format")
@@ -3895,7 +3897,7 @@ def execute_api_call(api: Garmin, key: str) -> None:
38953897
),
38963898
# System & Export
38973899
"create_health_report": lambda: DataExporter.create_health_report(api),
3898-
"remove_tokens": lambda: remove_stored_tokens(),
3900+
"remove_tokens": remove_stored_tokens,
38993901
"disconnect": lambda: disconnect_api(api),
39003902
# GraphQL Queries
39013903
"query_garmin_graphql": lambda: query_garmin_graphql_data(api),

0 commit comments

Comments
 (0)