Skip to content

Commit

Permalink
fix lint 2
Browse files Browse the repository at this point in the history
  • Loading branch information
pnovotnak committed Feb 27, 2024
1 parent c41d801 commit 1863ded
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions baseplate/lib/secrets.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down Expand Up @@ -485,7 +485,7 @@ class VaultCSISecretsStore(SecretsStore):

path: Path
data_symlink: Path
cache: dict[str, VaultCSIEntry]
cache: Dict[str, VaultCSIEntry]

def __init__(
self,
Expand Down

0 comments on commit 1863ded

Please sign in to comment.