From 5741cdee9adb08247613a92597c0831d9e208e6a Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Sun, 20 Jul 2025 20:26:06 -0500 Subject: [PATCH] fix odds dictionary --- src/odds_ticker_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/odds_ticker_manager.py b/src/odds_ticker_manager.py index 78cfb697..48138730 100644 --- a/src/odds_ticker_manager.py +++ b/src/odds_ticker_manager.py @@ -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')