forked from p15670423/monkey
Agent: Fix order of Exploiter Callback type hint arguments
This commit is contained in:
parent
f1b55b70c2
commit
a6bb81e473
|
@ -15,7 +15,7 @@ QUEUE_TIMEOUT = 2
|
|||
logger = logging.getLogger()
|
||||
|
||||
ExploiterName = str
|
||||
Callback = Callable[[VictimHost, ExploiterName, ExploiterResultData], None]
|
||||
Callback = Callable[[ExploiterName, VictimHost, ExploiterResultData], None]
|
||||
|
||||
|
||||
class Exploiter:
|
||||
|
|
Loading…
Reference in New Issue