Agent: Add bool return type hint to _can_propagate()

This commit is contained in:
Mike Salvatore 2022-01-26 08:14:04 -05:00
parent 92636da4b2
commit a888915577
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ class AutomatedMaster(IMaster):
command, result = self._puppet.run_pba(name, options)
self._telemetry_messenger.send_telemetry(PostBreachTelem(name, command, result))
def _can_propagate(self):
def _can_propagate(self) -> bool:
return True
def _run_payload(self, payload: Tuple[str, Dict]):