diff options
author | Devaev Maxim <[email protected]> | 2020-09-10 13:40:56 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-09-10 13:40:56 +0300 |
commit | 44c50aa4de96b7cc3fb6d057a62a1cd994315e63 (patch) | |
tree | dd0a96629b23b87cb5c8c5a1bf501c3a297977d8 /kvmd/aiotools.py | |
parent | ff36ff203e2228125c41a5cdd3df3d50b1a17cac (diff) |
removed edge detection
Diffstat (limited to 'kvmd/aiotools.py')
-rw-r--r-- | kvmd/aiotools.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/kvmd/aiotools.py b/kvmd/aiotools.py index dfd67f44..84c6f314 100644 --- a/kvmd/aiotools.py +++ b/kvmd/aiotools.py @@ -97,9 +97,6 @@ class AioNotifier: async def notify(self) -> None: await self.__queue.put(None) - def notify_sync(self) -> None: - self.__queue.put_nowait(None) - async def wait(self) -> None: await self.__queue.get() while not self.__queue.empty(): |