From 57d35966917ee5f86a21a452b6c3895e0ba83c94 Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Fri, 25 Apr 2025 12:44:24 -0500 Subject: [PATCH] fix: Add 'outs' key back to MLBLiveManager test data --- src/mlb_manager.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mlb_manager.py b/src/mlb_manager.py index bb7cb942..ebf26d0f 100644 --- a/src/mlb_manager.py +++ b/src/mlb_manager.py @@ -243,6 +243,7 @@ class BaseMLBManager: 'inning_half': 'bottom', 'balls': 2, 'strikes': 1, + 'outs': 1, 'bases_occupied': [True, False, True], # Runner on 1st and 3rd 'start_time': datetime.now().isoformat() } @@ -378,6 +379,7 @@ class MLBLiveManager(BaseMLBManager): "inning_half": "top", "balls": 2, "strikes": 1, + "outs": 1, "bases_occupied": [True, False, True], "home_logo_path": os.path.join(self.logo_dir, "TB.png"), "away_logo_path": os.path.join(self.logo_dir, "TEX.png"),