diff --git a/monkey/monkey_island/cc/repository/i_agent_configuration_repository.py b/monkey/monkey_island/cc/repository/i_agent_configuration_repository.py index 1e85fadf5..ef63121c2 100644 --- a/monkey/monkey_island/cc/repository/i_agent_configuration_repository.py +++ b/monkey/monkey_island/cc/repository/i_agent_configuration_repository.py @@ -15,7 +15,7 @@ class IAgentConfigurationRepository(ABC): :return: The agent configuration as retrieved from the repository, or the default configuration if the repository is empty - :raises RetrievalError: if the configuration could not be retrieved + :raises RetrievalError: If the configuration could not be retrieved """ pass @@ -25,5 +25,6 @@ class IAgentConfigurationRepository(ABC): Store the agent configuration in the repository :param agent_configuration: The agent configuration to store in the repository + :raises StorageError: If the configuration could not be stored """ pass