diff --git a/whisper-2023/hotwords.py b/whisper-2023/hotwords.py index 25c7e4f..5256d84 100644 --- a/whisper-2023/hotwords.py +++ b/whisper-2023/hotwords.py @@ -45,7 +45,7 @@ class Manager(threading.Thread): def __init__(self, outq): threading.Thread.__init__(self) self.outq = outq - inq = queue.Queue(maxsize=1) + inq = queue.Queue() def catcher(sig, frame): inq.put(None) self.inq = inq