diff options
author | Devaev Maxim <[email protected]> | 2020-06-08 05:52:58 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-06-08 05:52:58 +0300 |
commit | a28548cec5d19f5e1ca68108d96569320c894303 (patch) | |
tree | 466d2c63a188b3c7e2edf65c3ebf4b7691a8cfa8 /kvmd | |
parent | a81871adbe8d8a64d0125a266261edb6d793ff5c (diff) |
lint fix
Diffstat (limited to 'kvmd')
-rw-r--r-- | kvmd/apps/vnc/rfb/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/apps/vnc/rfb/__init__.py b/kvmd/apps/vnc/rfb/__init__.py index 60b78da8..80c08028 100644 --- a/kvmd/apps/vnc/rfb/__init__.py +++ b/kvmd/apps/vnc/rfb/__init__.py @@ -84,7 +84,7 @@ class RfbClient(RfbClientStream): # pylint: disable=too-many-instance-attribute async def _run(self, **coros: Coroutine) -> None: logger = get_logger(0) logger.info("[entry] [%s]: Starting client tasks ...", self._remote) - tasks = list(map(asyncio.create_task, [ + tasks = list(map(asyncio.create_task, [ # type: ignore # Я хз, почему github action фейлится здесь self.__wrapper(name, coro) for (name, coro) in {"main": self.__main_task_loop(), **coros}.items() ])) |