forked from p15670423/monkey
Agent: Add bool return type hint to _can_propagate()
This commit is contained in:
parent
92636da4b2
commit
a888915577
|
@ -182,7 +182,7 @@ class AutomatedMaster(IMaster):
|
||||||
command, result = self._puppet.run_pba(name, options)
|
command, result = self._puppet.run_pba(name, options)
|
||||||
self._telemetry_messenger.send_telemetry(PostBreachTelem(name, command, result))
|
self._telemetry_messenger.send_telemetry(PostBreachTelem(name, command, result))
|
||||||
|
|
||||||
def _can_propagate(self):
|
def _can_propagate(self) -> bool:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def _run_payload(self, payload: Tuple[str, Dict]):
|
def _run_payload(self, payload: Tuple[str, Dict]):
|
||||||
|
|
Loading…
Reference in New Issue