Remove some unused global queues

This commit is contained in:
Pedro 2023-12-04 11:36:50 +01:00
parent 0aa3b7c249
commit 1917ec077d

View file

@ -3,9 +3,6 @@ Hold queues used by more than one module to eliminate cyclic imports.
"""
import queue
DATA_QUEUE_TRANSMIT = queue.Queue()
DATA_QUEUE_RECEIVED = queue.Queue()
# Initialize FIFO queue to store received frames
MESH_RECEIVED_QUEUE = queue.Queue()
MESH_QUEUE_TRANSMIT = queue.Queue()