Island: Added "raises" to store_configuration() docstring

This commit is contained in:
Mike Salvatore 2022-06-27 09:24:32 -04:00
parent b5d7b800bb
commit 08bac8ef39
1 changed files with 2 additions and 1 deletions

View File

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