Island: Fix docstring formatting in ICredentialsRepository

This commit is contained in:
Mike Salvatore 2022-07-05 10:46:10 -04:00
parent 6695e5b4ac
commit 2736f058d7
1 changed files with 9 additions and 9 deletions

View File

@ -10,7 +10,7 @@ class ICredentialsRepository(ABC):
Retrieve all credentials that were configured. Retrieve all credentials that were configured.
:raises RetrievalError: If an error is encountered while attempting to retrieve configured :raises RetrievalError: If an error is encountered while attempting to retrieve configured
credentials. credentials
:return: Sequence of configured credentials :return: Sequence of configured credentials
""" """
pass pass
@ -19,9 +19,9 @@ class ICredentialsRepository(ABC):
""" """
Save credentials which are configured. Save credentials which are configured.
:param configured_credentials: Credentials that are going to be stored. :param configured_credentials: Credentials that are going to be stored
:raises StorageError: If an error is encountered while attempting to store configured :raises StorageError: If an error is encountered while attempting to store configured
credentials. credentials
""" """
pass pass
@ -30,7 +30,7 @@ class ICredentialsRepository(ABC):
Remove all configured credentials. Remove all configured credentials.
:raises RemovalError: If an error is encountered while attempting to remove configured :raises RemovalError: If an error is encountered while attempting to remove configured
credentials. credentials
""" """
pass pass
@ -39,7 +39,7 @@ class ICredentialsRepository(ABC):
Retrieve credentials that are stolen Retrieve credentials that are stolen
:raises RetrievalError: If an error is encountered while attempting to retrieve stolen :raises RetrievalError: If an error is encountered while attempting to retrieve stolen
credentials. credentials
:return: Sequence of all stolen credentials :return: Sequence of all stolen credentials
""" """
pass pass
@ -48,9 +48,9 @@ class ICredentialsRepository(ABC):
""" """
Save credentials which are stolen. Save credentials which are stolen.
:param stolen_credentials: Credentials that are going to be stored. :param stolen_credentials: Credentials that are going to be stored
:raises StorageError: If an error is encountered while attempting to store stolen :raises StorageError: If an error is encountered while attempting to store stolen
credentials. credentials
""" """
pass pass
@ -58,7 +58,7 @@ class ICredentialsRepository(ABC):
""" """
Remove all credentials from the repository. Remove all credentials from the repository.
:raises RemovalError: If an error is encountered while attempting to remove the credentials. :raises RemovalError: If an error is encountered while attempting to remove the credentials
""" """
pass pass
@ -76,6 +76,6 @@ class ICredentialsRepository(ABC):
""" """
Remove all the credentials in the repository. Remove all the credentials in the repository.
:raises RemovalError: If an error is encountered while attempting to remove the credentials. :raises RemovalError: If an error is encountered while attempting to remove the credentials
""" """
pass pass