forked from goodboy/tractor
1
0
Fork 0

Merge pull request #253 from overclockworked64/fix-type-annotation

Fix type annotations
graceful_gather
goodboy 2021-10-23 19:09:11 -04:00 committed by GitHub
commit ebf080b8a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ async def open_actor_cluster(
start_method: Optional[str] = None, start_method: Optional[str] = None,
hard_kill: bool = False, hard_kill: bool = False,
) -> AsyncGenerator[ ) -> AsyncGenerator[
list[str], dict[str, tractor.Portal],
dict[str, tractor.Portal] None,
]: ]:
portals: dict[str, tractor.Portal] = {} portals: dict[str, tractor.Portal] = {}