File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff 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 ),
You can’t perform that action at this time.
0 commit comments