diff options
Diffstat (limited to 'kvmd/plugins/ugpio/pway.py')
-rw-r--r-- | kvmd/plugins/ugpio/pway.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/plugins/ugpio/pway.py b/kvmd/plugins/ugpio/pway.py index 041aaf27..969838f3 100644 --- a/kvmd/plugins/ugpio/pway.py +++ b/kvmd/plugins/ugpio/pway.py @@ -103,7 +103,7 @@ class Plugin(BaseUserGpioDriver): # pylint: disable=too-many-instance-attribute (got, channel) = await aiomulti.queue_get_last(self.__channel_queue, 1) if got and self.__channel != channel: self.__channel = channel - await self._notifier.notify() + self._notifier.notify() async def cleanup(self) -> None: if self.__proc is not None: |