fix odds dictionary

This commit is contained in:
Chuck
2025-07-20 20:26:06 -05:00
parent 25a6bf9dc8
commit 5741cdee9a

View File

@@ -395,7 +395,7 @@ class OddsTickerManager:
team_info_width = max(away_team_width, home_team_width)
# Odds text
odds = game.get('odds', {})
odds = game.get('odds') or {}
home_team_odds = odds.get('home_team_odds', {})
away_team_odds = odds.get('away_team_odds', {})
home_spread = home_team_odds.get('spread_odds')