From 1863ded5f1299f4344ce38cc52430a06decc7567 Mon Sep 17 00:00:00 2001 From: Peter Novotnak Date: Tue, 27 Feb 2024 04:41:01 +0000 Subject: [PATCH] fix lint 2 --- baseplate/lib/secrets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/baseplate/lib/secrets.py b/baseplate/lib/secrets.py index fa7070d84..9750734bf 100644 --- a/baseplate/lib/secrets.py +++ b/baseplate/lib/secrets.py @@ -402,7 +402,7 @@ def __init__( backoff: Optional[float] = None, ): # pylint: disable=super-init-not-called self.parser = parser - self._filewatchers: dict[str, FileWatcher] = {} + self._filewatchers = {} root = Path(path) for p in root.glob("**"): file_path = str(p.relative_to(path)) @@ -485,7 +485,7 @@ class VaultCSISecretsStore(SecretsStore): path: Path data_symlink: Path - cache: dict[str, VaultCSIEntry] + cache: Dict[str, VaultCSIEntry] def __init__( self,