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,
|
self,
|
||||||
target: str,
|
target: str,
|
||||||
propagation_success: bool,
|
propagation_success: bool,
|
||||||
tags: Tuple[str] = tuple(),
|
tags: Tuple[str, ...] = tuple(),
|
||||||
error_message: str = "",
|
error_message: str = "",
|
||||||
):
|
):
|
||||||
propagation_event = PropagationEvent(
|
propagation_event = PropagationEvent(
|
||||||
|
@ -149,7 +149,7 @@ class HostExploiter:
|
||||||
self,
|
self,
|
||||||
target: str,
|
target: str,
|
||||||
exploitation_success: bool,
|
exploitation_success: bool,
|
||||||
tags: Tuple[str] = tuple(),
|
tags: Tuple[str, ...] = tuple(),
|
||||||
error_message: str = "",
|
error_message: str = "",
|
||||||
):
|
):
|
||||||
exploitation_event = ExploitationEvent(
|
exploitation_event = ExploitationEvent(
|
||||||
|
|
Loading…
Reference in New Issue