diff options
Diffstat (limited to 'kvmd/plugins/hid/otg/device.py')
-rw-r--r-- | kvmd/plugins/hid/otg/device.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/plugins/hid/otg/device.py b/kvmd/plugins/hid/otg/device.py index 37cb7b07..2986ce4e 100644 --- a/kvmd/plugins/hid/otg/device.py +++ b/kvmd/plugins/hid/otg/device.py @@ -124,7 +124,7 @@ class BaseDeviceProcess(multiprocessing.Process): # pylint: disable=too-many-in self.join() def _queue_event(self, event: BaseEvent) -> None: - self.__events_queue.put(event) + self.__events_queue.put_nowait(event) def _ensure_write(self, report: bytes, reopen: bool=False, close: bool=False) -> bool: if reopen: |