fixed with import

Signed-off-by: Ebbe Baß <ebbe.bass>
This commit is contained in:
Ebbe Baß
2024-02-19 16:07:04 +01:00
parent bce5110ad5
commit 98d568e9d6
+2 -1
View File
@@ -8,6 +8,7 @@ from getmac import get_mac_address
import time
import sys
from multiprocessing import Process, Pipe, Queue
from queue import Empty
from ast import literal_eval
app = Flask(__name__)
@@ -161,7 +162,7 @@ def tube_index_collector(ti_queue, ti_sender):
ti_sender.send(item)
item_old = item
print("new item")
except queue.Empty:
except Empty:
print("emtpy")
if item_old is not None:
ti_sender.send(item_old)