mirror of
https://github.com/ChuckBuilds/LEDMatrix.git
synced 2026-04-12 05:42:59 +00:00
fixed MBL MLB typo
This commit is contained in:
@@ -254,7 +254,7 @@ class BaseMLBManager:
|
|||||||
self.logger.error(f"Error fetching MLB data from ESPN API: {e}")
|
self.logger.error(f"Error fetching MLB data from ESPN API: {e}")
|
||||||
return {}
|
return {}
|
||||||
|
|
||||||
class MBLLiveManager(BaseMLBManager):
|
class MLBLiveManager(BaseMLBManager):
|
||||||
"""Manager for displaying live MLB games."""
|
"""Manager for displaying live MLB games."""
|
||||||
def __init__(self, config: Dict[str, Any], display_manager):
|
def __init__(self, config: Dict[str, Any], display_manager):
|
||||||
super().__init__(config, display_manager)
|
super().__init__(config, display_manager)
|
||||||
@@ -291,9 +291,9 @@ class MBLLiveManager(BaseMLBManager):
|
|||||||
"status": "live"
|
"status": "live"
|
||||||
}
|
}
|
||||||
self.live_games = [self.current_game]
|
self.live_games = [self.current_game]
|
||||||
self.logger.info("Initialized MBLLiveManager with test game: TB vs TEX")
|
self.logger.info("Initialized MLBLiveManager with test game: TB vs TEX")
|
||||||
else:
|
else:
|
||||||
self.logger.info("Initialized MBLLiveManager in live mode")
|
self.logger.info("Initialized MLBLiveManager in live mode")
|
||||||
|
|
||||||
def update(self):
|
def update(self):
|
||||||
"""Update live game data."""
|
"""Update live game data."""
|
||||||
|
|||||||
Reference in New Issue
Block a user