forked from goodboy/tractor
Shush the linter
parent
61e5284461
commit
476418cfc6
|
@ -282,7 +282,8 @@ class Actor:
|
|||
# TODO: consider making this a dynamically defined
|
||||
# @dataclass once we get py3.7
|
||||
self.loglevel = loglevel
|
||||
self._arb_addr = tuple(arbiter_addr) if arbiter_addr is not None else (None, None)
|
||||
self._arb_addr = tuple(
|
||||
arbiter_addr) if arbiter_addr is not None else (None, None)
|
||||
|
||||
# marked by the process spawning backend at startup
|
||||
# will be None for the parent most process started manually
|
||||
|
@ -312,6 +313,7 @@ class Actor:
|
|||
self._parent_chan: Optional[Channel] = None
|
||||
self._forkserver_info: Optional[
|
||||
Tuple[Any, Any, Any, Any, Any]] = None
|
||||
|
||||
self._actoruid2nursery: Dict[str, 'ActorNursery'] = {} # type: ignore # noqa
|
||||
|
||||
async def wait_for_peer(
|
||||
|
|
Loading…
Reference in New Issue