From a28548cec5d19f5e1ca68108d96569320c894303 Mon Sep 17 00:00:00 2001 From: Devaev Maxim Date: Mon, 8 Jun 2020 05:52:58 +0300 Subject: [PATCH] lint fix --- kvmd/apps/vnc/rfb/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() ]))