fixed typo

Signed-off-by: Ebbe Baß <ebbe.bass>
main
Ebbe Baß 2024-02-18 00:42:17 +01:00
parent b2c8dc5d83
commit b2b958018e
1 changed files with 1 additions and 1 deletions

View File

@ -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()