From 244f5f15be95191de43afb30a75c27b2b253f113 Mon Sep 17 00:00:00 2001 From: tomke honkomp Date: Tue, 9 Sep 2025 16:41:54 +0200 Subject: [PATCH] Update port for dashboard --- c_module/logic/visualisation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c_module/logic/visualisation.py b/c_module/logic/visualisation.py index b680f6f..a102561 100644 --- a/c_module/logic/visualisation.py +++ b/c_module/logic/visualisation.py @@ -828,7 +828,7 @@ def open_browser(self, url): import webbrowser webbrowser.open_new(url) - def run(self, open_browser=True, port=8050): + def run(self, open_browser=True, port=9000): if open_browser: from threading import Timer Timer(1, lambda: self.open_browser(f"http://localhost:{port}")).start()