diff options
author | Maxim Devaev <[email protected]> | 2022-08-07 19:04:32 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2022-08-07 19:04:32 +0300 |
commit | ec9785b4be4afb8667e6968a0454aeca62a190e2 (patch) | |
tree | 0b5c7d1b03041867c78f5533a8dd8f488711b073 /kvmd/apps/vnc/server.py | |
parent | aa630988cc09f31d412a62c5480d4bec1a7c626e (diff) |
simplified AioNotifier()
Diffstat (limited to 'kvmd/apps/vnc/server.py')
-rw-r--r-- | kvmd/apps/vnc/server.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kvmd/apps/vnc/server.py b/kvmd/apps/vnc/server.py index 54974bfb..151f6374 100644 --- a/kvmd/apps/vnc/server.py +++ b/kvmd/apps/vnc/server.py @@ -294,7 +294,7 @@ class _Client(RfbClient): # pylint: disable=too-many-instance-attributes if len(last["data"]) == 0: # Вдруг какой-то баг - await self.__fb_notifier.notify() + self.__fb_notifier.notify() continue if last["format"] == StreamFormats.JPEG: @@ -305,7 +305,7 @@ class _Client(RfbClient): # pylint: disable=too-many-instance-attributes if has_h264_key: await self._send_fb_h264(last["data"]) else: - await self.__fb_notifier.notify() + self.__fb_notifier.notify() else: raise RuntimeError(f"Unknown format: {last['format']}") last["data"] = b"" @@ -406,7 +406,7 @@ class _Client(RfbClient): # pylint: disable=too-many-instance-attributes await self.__kvmd_session.streamer.set_params(quality, self.__desired_fps) async def _on_fb_update_request(self) -> None: - await self.__fb_notifier.notify() + self.__fb_notifier.notify() # ===== |