cache updates

This commit is contained in:
Chuck
2025-07-20 16:08:18 -05:00
parent 86fac90de5
commit ca1d56378a
2 changed files with 10 additions and 4 deletions

View File

@@ -57,6 +57,10 @@ class BaseMLBManager:
if not self.show_odds:
return
# Skip if odds are already attached to this game
if 'odds' in game and game['odds']:
return
try:
game_id = game.get('id', 'N/A')
self.logger.info(f"Requesting odds for game ID: {game_id}")