forked from p34709852/monkey
Agent: Fix tuple type hint
This commit is contained in:
parent
116ae90f3d
commit
ee77eddaab
|
@ -132,7 +132,7 @@ class HostExploiter:
|
|||
self,
|
||||
target: str,
|
||||
propagation_success: bool,
|
||||
tags: Tuple[str] = tuple(),
|
||||
tags: Tuple[str, ...] = tuple(),
|
||||
error_message: str = "",
|
||||
):
|
||||
propagation_event = PropagationEvent(
|
||||
|
@ -149,7 +149,7 @@ class HostExploiter:
|
|||
self,
|
||||
target: str,
|
||||
exploitation_success: bool,
|
||||
tags: Tuple[str] = tuple(),
|
||||
tags: Tuple[str, ...] = tuple(),
|
||||
error_message: str = "",
|
||||
):
|
||||
exploitation_event = ExploitationEvent(
|
||||
|
|
Loading…
Reference in New Issue