Agent: Switch copy_file typehint from str to Path

This commit is contained in:
Mike Salvatore 2021-07-08 12:04:12 -04:00
parent 064525e6b9
commit 7454ee72b2
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class RansomwarePayload:
self,
config: dict,
telemetry_messenger: ITelemetryMessenger,
copy_file: Callable[[str, str], None],
copy_file: Callable[[Path, Path], None],
):
LOG.debug(f"Ransomware payload configuration:\n{pformat(config)}")