mirror of
https://github.com/ChuckBuilds/LEDMatrix.git
synced 2026-04-10 13:02:59 +00:00
Fix display update method name in NHL managers
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user