From 3221e2f7f020960b5a47c39f9d522a8ce915ccd5 Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Thu, 17 Apr 2025 11:33:01 -0500 Subject: [PATCH] fix(controller): Call correct update method for StockManager --- 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 112586bb..5869dac1 100644 --- a/src/display_controller.py +++ b/src/display_controller.py @@ -73,7 +73,7 @@ class DisplayController: # Update methods might have different frequencies, but call here for simplicity # 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() # Assuming stock manager has update() + if self.stocks: self.stocks.update_stock_data() # Correct method name if self.news: self.news.update() # Assuming news manager has update() if self.nhl: self.nhl.update() # Clock updates itself during display typically