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

@@ -408,10 +408,11 @@ class BaseNFLManager: # Renamed class
# Remove early filtering - let individual managers handle their own filtering
# This allows shared data to contain all games, and each manager can filter as needed
game_time, game_date = "", ""
game_time = ""
game_date = ""
if start_time_utc:
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")
# --- NFL Specific Details ---