From b2b958018e9d1fcf78773cf52186f193c628add3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sun, 18 Feb 2024 00:42:17 +0100 Subject: [PATCH] fixed typo 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 372117c..d807951 100644 --- a/server/app.py +++ b/server/app.py @@ -153,7 +153,7 @@ def tube_index_updater(data_queue): if __name__ == "__main__": data_queue = Queue() - ti_updater_thread = Process(target=tube_index_updater(), args=(data_queue, )) + ti_updater_thread = Process(target=tube_index_updater, args=(data_queue, )) ti_updater_thread.start() publisher_thread = Process(target=mqtt_publisher, args=(data_queue, )) publisher_thread.start()