From 20a8cb70e193234e2cc568d3adea5bfdef9f5803 Mon Sep 17 00:00:00 2001 From: Remy Moll Date: Thu, 18 Feb 2021 10:37:24 +0100 Subject: [PATCH] better initialisation of modules --- launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher.py b/launcher.py index d55c1e4..195e8c2 100644 --- a/launcher.py +++ b/launcher.py @@ -41,9 +41,9 @@ class Launcher(): self.dashboard_module = dashboard.main.DashBoard(host_ip="0.0.0.0", prst=self.persistence) self.modules = { + "clock" : self.clock_module, "bot" : self.bot_module, "dashboard" : self.dashboard_module, - "clock" : self.clock_module, } for module in self.modules.values():