From 02cca3e12ac921129d5a7bf5f15d5e4437264120 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Fri, 24 Jun 2022 07:42:01 -0400 Subject: [PATCH] Agent: Remove unnecessary type hints from IAgentRepository doctring --- monkey/infection_monkey/exploit/i_agent_repository.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/monkey/infection_monkey/exploit/i_agent_repository.py b/monkey/infection_monkey/exploit/i_agent_repository.py index a00aac55a..308cf5418 100644 --- a/monkey/infection_monkey/exploit/i_agent_repository.py +++ b/monkey/infection_monkey/exploit/i_agent_repository.py @@ -21,8 +21,7 @@ class IAgentRepository(metaclass=abc.ABCMeta): """ Retrieve the appropriate agent binary from the repository. :param operating_system: The name of the operating system on which the agent binary will run - :param str architecture: Reserved + :param architecture: Reserved :return: A file-like object for the requested agent binary - :rtype: io.BytesIO """ pass