Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
PietroPasotti committed May 2, 2024
1 parent 9e890b7 commit cdfadcf
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions lib/charms/observability_libs/v1/cert_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,17 +90,13 @@ class CertHandlerEvents(ObjectEvents):


class _VaultBackend(abc.ABC):
def store(self, contents: Dict[str, str], clear: bool = False):
...
def store(self, contents: Dict[str, str], clear: bool = False): ...

def get_value(self, key: str) -> Optional[str]:
...
def get_value(self, key: str) -> Optional[str]: ...

def retrieve(self) -> Dict[str, str]:
...
def retrieve(self) -> Dict[str, str]: ...

def nuke(self):
...
def nuke(self): ...


class _RelationVaultBackend(_VaultBackend):
Expand Down

0 comments on commit cdfadcf

Please sign in to comment.