Island: Remove superfluous "pass" from ICredentialsRepository
This commit is contained in:
parent
3fd27c6503
commit
a7a2968a99
|
@ -21,7 +21,6 @@ class ICredentialsRepository(ABC):
|
||||||
credentials
|
credentials
|
||||||
:return: Sequence of configured credentials
|
:return: Sequence of configured credentials
|
||||||
"""
|
"""
|
||||||
pass
|
|
||||||
|
|
||||||
def get_stolen_credentials(self) -> Sequence[Credentials]:
|
def get_stolen_credentials(self) -> Sequence[Credentials]:
|
||||||
"""
|
"""
|
||||||
|
@ -31,7 +30,6 @@ class ICredentialsRepository(ABC):
|
||||||
credentials
|
credentials
|
||||||
:return: Sequence of stolen credentials
|
:return: Sequence of stolen credentials
|
||||||
"""
|
"""
|
||||||
pass
|
|
||||||
|
|
||||||
def get_all_credentials(self) -> Sequence[Credentials]:
|
def get_all_credentials(self) -> Sequence[Credentials]:
|
||||||
"""
|
"""
|
||||||
|
@ -41,7 +39,6 @@ class ICredentialsRepository(ABC):
|
||||||
credentials
|
credentials
|
||||||
:return: Sequence of stolen and configured credentials
|
:return: Sequence of stolen and configured credentials
|
||||||
"""
|
"""
|
||||||
pass
|
|
||||||
|
|
||||||
def save_configured_credentials(self, credentials: Sequence[Credentials]):
|
def save_configured_credentials(self, credentials: Sequence[Credentials]):
|
||||||
"""
|
"""
|
||||||
|
@ -50,7 +47,6 @@ class ICredentialsRepository(ABC):
|
||||||
:param credentials: Configured Credentials to store in the repository
|
:param credentials: Configured Credentials to store in the repository
|
||||||
:raises StorageError: If an error is encountered while attempting to store the credentials
|
:raises StorageError: If an error is encountered while attempting to store the credentials
|
||||||
"""
|
"""
|
||||||
pass
|
|
||||||
|
|
||||||
def save_stolen_credentials(self, credentials: Sequence[Credentials]):
|
def save_stolen_credentials(self, credentials: Sequence[Credentials]):
|
||||||
"""
|
"""
|
||||||
|
@ -59,7 +55,6 @@ class ICredentialsRepository(ABC):
|
||||||
:param credentials: Stolen Credentials to store in the repository
|
:param credentials: Stolen Credentials to store in the repository
|
||||||
:raises StorageError: If an error is encountered while attempting to store the credentials
|
:raises StorageError: If an error is encountered while attempting to store the credentials
|
||||||
"""
|
"""
|
||||||
pass
|
|
||||||
|
|
||||||
def remove_configured_credentials(self):
|
def remove_configured_credentials(self):
|
||||||
"""
|
"""
|
||||||
|
@ -67,7 +62,6 @@ class ICredentialsRepository(ABC):
|
||||||
|
|
||||||
: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
|
|
||||||
|
|
||||||
def remove_stolen_credentials(self):
|
def remove_stolen_credentials(self):
|
||||||
"""
|
"""
|
||||||
|
@ -75,7 +69,6 @@ class ICredentialsRepository(ABC):
|
||||||
|
|
||||||
: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
|
|
||||||
|
|
||||||
def remove_all_credentials(self):
|
def remove_all_credentials(self):
|
||||||
"""
|
"""
|
||||||
|
@ -83,7 +76,6 @@ class ICredentialsRepository(ABC):
|
||||||
|
|
||||||
: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
|
|
||||||
|
|
||||||
def reset(self):
|
def reset(self):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue