From 9f38406e8571d62de690a95c064bf54b3db274cd Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Wed, 28 Apr 2021 22:26:06 -0400 Subject: [PATCH] Appease mypy --- tractor/_spawn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tractor/_spawn.py b/tractor/_spawn.py index 3f07ba0..cb1f3b2 100644 --- a/tractor/_spawn.py +++ b/tractor/_spawn.py @@ -357,7 +357,7 @@ async def mp_new_proc( else: fs_info = (None, None, None, None, None) - proc = _ctx.Process( # type: ignore + proc: mp.Process = _ctx.Process( # type: ignore target=_mp_main, args=( subactor,