From cb82c5d0c3ffcb1edc921843e00e7be4a1235a10 Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Fri, 18 Apr 2025 14:54:30 -0500 Subject: [PATCH] Fix Clock initialization in DisplayController to match Clock class signature --- 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 5d25d6a3..f34329e3 100644 --- a/src/display_controller.py +++ b/src/display_controller.py @@ -24,7 +24,7 @@ class DisplayController: self.display_manager = DisplayManager(self.config) # Initialize display modes - self.clock = Clock(self.config, self.display_manager) if self.config['display'].get('clock_enabled', True) else None + self.clock = Clock(self.display_manager) if self.config['display'].get('clock_enabled', True) else None self.weather = WeatherManager(self.config, self.display_manager) if self.config['display'].get('weather_enabled', True) else None self.stocks = StockManager(self.config, self.display_manager) if self.config['display'].get('stocks_enabled', True) else None self.news = StockNewsManager(self.config, self.display_manager) if self.config['display'].get('news_enabled', True) else None