From fe4156370a7f92a79564f2074034b6690599ed4d Mon Sep 17 00:00:00 2001 From: Vidar Tonaas Fauske <510760+vidartf@users.noreply.github.com> Date: Fri, 19 Aug 2022 10:28:07 +0100 Subject: [PATCH] More type tweaking --- jupyter_client/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyter_client/utils.py b/jupyter_client/utils.py index 8a451eaca..9fa2ce1f1 100644 --- a/jupyter_client/utils.py +++ b/jupyter_client/utils.py @@ -57,7 +57,7 @@ def wrapped(*args, **kwargs): except RuntimeError: loop = asyncio.new_event_loop() asyncio.set_event_loop(loop) - import nest_asyncio # type: ignore + import nest_asyncio nest_asyncio.apply(loop) future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop)