Skip to content

Commit edcf79f

Browse files
committed
Lint fixes
1 parent a9da8c4 commit edcf79f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ def display_daily_stats(api: Garmin):
238238
today = date.today().isoformat()
239239

240240
# Get user summary (steps, calories, etc.)
241-
success, summary, error_msg = safe_api_call(api.get_user_summary, today)
241+
success, summary, _error_msg = safe_api_call(api.get_user_summary, today)
242242
if success and summary:
243243
steps = summary.get("totalSteps", 0)
244244
summary.get("totalDistanceMeters", 0) / 1000 # Convert to km

0 commit comments

Comments
 (0)