You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In ThreadPoolExecutorPlus/thread.py, there is the following assignment for the variable QUEUE_ABOVE_PY_37: QUEUE_ABOVE_PY_37 = True if 'SipleQueue' in dir(queue) else False
Since there is no "SipleQueue" in the queue module, this expression always evaluates to False.
The text was updated successfully, but these errors were encountered:
In ThreadPoolExecutorPlus/thread.py, there is the following assignment for the variable QUEUE_ABOVE_PY_37:
QUEUE_ABOVE_PY_37 = True if 'SipleQueue' in dir(queue) else False
Since there is no "SipleQueue" in the queue module, this expression always evaluates to False.
The text was updated successfully, but these errors were encountered: