lots of visual and logic changes

This commit is contained in:
Chuck
2025-07-21 15:22:12 -05:00
parent d3ab27b221
commit 94f0eb060b
10 changed files with 12 additions and 18 deletions

View File

@@ -560,7 +560,7 @@ class BaseSoccerManager:
game_date = ""
if start_time_utc:
local_time = start_time_utc.astimezone(self._get_timezone())
game_time = local_time.strftime("%-I:%M%p").lower() # e.g., 2:30pm
game_time = local_time.strftime("%I:%M%p").lower().lstrip('0') # e.g., 2:30pm
game_date = local_time.strftime("%-m/%-d")
status_type = status["type"]["name"]