game time formatting to remove space between time and AM/PM

This commit is contained in:
Chuck
2025-07-22 11:23:25 -05:00
parent a580d87876
commit c3ded3999f
10 changed files with 112 additions and 100 deletions

View File

@@ -442,7 +442,7 @@ class BaseNBAManager:
if start_time_utc:
# Convert to local time
local_time = start_time_utc.astimezone(self._get_timezone())
game_time = local_time.strftime("%I:%M %p").lstrip('0')
game_time = local_time.strftime("%I:%M%p").lstrip('0')
game_date = local_time.strftime("%-m/%-d")
# Calculate if game is within recent window