From 86352b5bd3eb0db096857ca9b60708e39062303b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Wed, 14 Feb 2024 02:40:00 +0100 Subject: [PATCH] test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- server/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/app.py b/server/app.py index 8cc88a4..33c1c78 100644 --- a/server/app.py +++ b/server/app.py @@ -156,8 +156,8 @@ def start_mqtt_publishers(universe_count): universes_to_publish = list(range(1, used_universes + 1)) # Create and start a thread for each universe print(str(universes_to_publish)) - for universe in range(universes_to_publish): - print(universe) + for universe in universes_to_publish: + print(str(universe)) threads = [threading.Thread(target=mqtt_publisher, args=(int(universe),))] for thread in threads: