Agent: Fix tuple type hint

This commit is contained in:
Kekoa Kaaikala 2022-10-04 17:50:39 +00:00
parent 116ae90f3d
commit ee77eddaab
1 changed files with 2 additions and 2 deletions

View File

@ -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(