Fix display update method name in NHL managers

This commit is contained in:
ChuckBuilds
2025-04-18 15:39:25 -05:00
parent 82b8e358fe
commit 1f76c12b11

View File

@@ -545,7 +545,7 @@ class NHLRecentManager(BaseNHLManager):
self._draw_scorebug_layout(self.current_game, force_clear)
# Update display
self.display_manager.update()
self.display_manager.update_display()
# Move to next game
self.current_game_index = (self.current_game_index + 1) % len(self.games_list)
@@ -617,7 +617,7 @@ class NHLUpcomingManager(BaseNHLManager):
self._draw_scorebug_layout(self.current_game, force_clear)
# Update display
self.display_manager.update()
self.display_manager.update_display()
# Move to next game
self.current_game_index = (self.current_game_index + 1) % len(self.games_list)