From b93d0d7d2e5c3fe882ef41b21bff9218f10e4c01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Wed, 14 Feb 2024 02:47:40 +0100 Subject: [PATCH] removed int MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- server/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/app.py b/server/app.py index 33c1c78..f3f9838 100644 --- a/server/app.py +++ b/server/app.py @@ -158,7 +158,7 @@ def start_mqtt_publishers(universe_count): print(str(universes_to_publish)) for universe in universes_to_publish: print(str(universe)) - threads = [threading.Thread(target=mqtt_publisher, args=(int(universe),))] + threads = [threading.Thread(target=mqtt_publisher, args=(universe,))] for thread in threads: thread.start()