Agent: Add missing return type hint to _try_communicate_with_island()

This commit is contained in:
Mike Salvatore 2022-06-23 14:46:03 -04:00
parent aff54232e9
commit bba7139be6
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ class AutomatedMaster(IMaster):
time.sleep(CHECK_FOR_TERMINATE_INTERVAL_SEC)
@staticmethod
def _try_communicate_with_island(fn: Callable[[], Any], max_tries: int):
def _try_communicate_with_island(fn: Callable[[], Any], max_tries: int) -> Any:
tries = 0
while tries < max_tries:
try: