forked from goodboy/tractor
1
0
Fork 0

Fix tuple type

transport_cleaning
Tyler Goodlet 2021-07-02 18:10:06 -04:00
parent 85246d2df3
commit a2d400583f
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ class Actor:
enable_modules: List[str] = [], enable_modules: List[str] = [],
uid: str = None, uid: str = None,
loglevel: str = None, loglevel: str = None,
arbiter_addr: Optional[Tuple[str, int]] = (None, None), arbiter_addr: Optional[Tuple[str, int]] = None,
spawn_method: Optional[str] = None spawn_method: Optional[str] = None
) -> None: ) -> None:
"""This constructor is called in the parent actor **before** the spawning """This constructor is called in the parent actor **before** the spawning