From 50400359b8566b489ebb2350c5a27fa28c3eba7a Mon Sep 17 00:00:00 2001 From: overclockworked64 Date: Sun, 24 Oct 2021 00:47:26 +0200 Subject: [PATCH] Fix type annotations --- tractor/_clustering.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tractor/_clustering.py b/tractor/_clustering.py index 410459b..6d7e7c8 100644 --- a/tractor/_clustering.py +++ b/tractor/_clustering.py @@ -20,8 +20,8 @@ async def open_actor_cluster( start_method: Optional[str] = None, hard_kill: bool = False, ) -> AsyncGenerator[ - list[str], - dict[str, tractor.Portal] + dict[str, tractor.Portal], + None, ]: portals: dict[str, tractor.Portal] = {}