From 4c86b1bd3d8fe9806d0889f00baf8a72c7dda882 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Tue, 26 Jul 2022 10:47:19 -0400 Subject: [PATCH] Common: Remove periods from CustomPBAConfiguration docstrings --- .../agent_configuration/agent_sub_configurations.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/monkey/common/agent_configuration/agent_sub_configurations.py b/monkey/common/agent_configuration/agent_sub_configurations.py index 4dbd9a3f2..188b9d1bb 100644 --- a/monkey/common/agent_configuration/agent_sub_configurations.py +++ b/monkey/common/agent_configuration/agent_sub_configurations.py @@ -9,15 +9,14 @@ class CustomPBAConfiguration: Attributes: :param linux_command: Command to run on Linux victim machines. If a file is uploaded, - use this field to change its permissions, execute it, and/or delete - it. + use this field to change its permissions, execute it, and/or delete it Example: `chmod +x file.sh; ./file.sh; rm file.sh` - :param linux_filename: Name of the file to upload on Linux victim machines. + :param linux_filename: Name of the file to upload on Linux victim machines :param windows_command: Command to run on Windows victim machines. If a file is uploaded, use this field to change its permissions, execute it, and/or delete - it. + it Example: `file.bat & del file.bat` - :param windows_filename: Name of the file to upload on Windows victim machines. + :param windows_filename: Name of the file to upload on Windows victim machines """ linux_command: str