Fix uid2nursery lookup table type annot

ipc_failure_while_streaming
Tyler Goodlet 2022-10-17 15:54:05 -04:00
parent d27c081a15
commit 97d5f7233b
1 changed files with 4 additions and 1 deletions

View File

@ -488,7 +488,10 @@ class Actor:
self._parent_chan: Optional[Channel] = None
self._forkserver_info: Optional[
tuple[Any, Any, Any, Any, Any]] = None
self._actoruid2nursery: dict[Optional[tuple[str, str]], 'ActorNursery'] = {} # type: ignore # noqa
self._actoruid2nursery: dict[
tuple[str, str],
ActorNursery | None,
] = {} # type: ignore # noqa
async def wait_for_peer(
self, uid: tuple[str, str]