From 6882b50e99939c96653a5fdf32db9099ad95a88b Mon Sep 17 00:00:00 2001 From: bel Date: Wed, 29 Mar 2023 20:11:43 -0600 Subject: [PATCH] multi interrupt ok --- whisper-2023/hotwords.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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