diff --git a/gestalt/vault.py b/gestalt/vault.py index fa255f8..52157a7 100644 --- a/gestalt/vault.py +++ b/gestalt/vault.py @@ -17,7 +17,6 @@ class Vault(Provider): - def __init__( self, cert: Optional[Tuple[str, str]] = None, @@ -127,12 +126,13 @@ def stop(self) -> None: def __del__(self) -> None: self.stop() - def get(self, - key: str, - path: str, - filter: str, - sep: Optional[str] = "." - ) -> Union[str, int, float, bool, List[Any]]: + def get( + self, + key: str, + path: str, + filter: str, + sep: Optional[str] = "." + ) -> Union[str, int, float, bool, List[Any]]: """Gets secret from vault Args: key (str): key to get secret from @@ -270,4 +270,4 @@ def _validate_token_expiration(self) -> None: else: print(f"Token still valid for: {delta_time} days") else: - print("Token information not retreived") \ No newline at end of file + print("Token information not retreived")