From ece38fee43b7e6fe280dbb0810a4bf225fc79856 Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Thu, 17 Apr 2025 11:34:44 -0500 Subject: [PATCH] fix(controller): Call correct update method for StockNewsManager --- src/display_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display_controller.py b/src/display_controller.py index 5869dac1..4d3ee550 100644 --- a/src/display_controller.py +++ b/src/display_controller.py @@ -74,7 +74,7 @@ class DisplayController: # Could add timers per module later if needed if self.weather: self.weather.get_weather() # weather update fetches data if self.stocks: self.stocks.update_stock_data() # Correct method name - if self.news: self.news.update() # Assuming news manager has update() + if self.news: self.news.update_news_data() # Correct method name if self.nhl: self.nhl.update() # Clock updates itself during display typically