File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -217,14 +217,14 @@ def init_api() -> Garmin | None:
217217def display_user_info (api : Garmin ):
218218 """Display basic user information with proper error handling."""
219219 # Get user's full name
220- success , full_name , error_msg = safe_api_call (api .get_full_name )
220+ success , _full_name , _error_msg = safe_api_call (api .get_full_name )
221221 if success :
222222 pass
223223 else :
224224 pass
225225
226226 # Get user profile number from device info
227- success , device_info , error_msg = safe_api_call (api .get_device_last_used )
227+ success , device_info , _error_msg = safe_api_call (api .get_device_last_used )
228228 if success and device_info and device_info .get ("userProfileNumber" ):
229229 device_info .get ("userProfileNumber" )
230230 elif not success :
@@ -256,7 +256,7 @@ def display_daily_stats(api: Garmin):
256256 pass
257257
258258 # Get hydration data
259- success , hydration , error_msg = safe_api_call (api .get_hydration_data , today )
259+ success , hydration , _error_msg = safe_api_call (api .get_hydration_data , today )
260260 if success and hydration and hydration .get ("valueInML" ):
261261 hydration_ml = int (hydration .get ("valueInML" , 0 ))
262262 hydration_goal = hydration .get ("goalInML" , 0 )
You can’t perform that action at this time.
0 commit comments