1
0
forked from clan/clan-core

clan-cli sops: fix super class interface compliance

This commit is contained in:
lassulus 2024-03-03 04:07:01 +01:00
parent a23c251b09
commit b8da149453

View File

@ -45,7 +45,7 @@ class SecretStore(SecretStoreBase):
)
return path
def get(self, service: str, _name: str) -> bytes:
def get(self, service: str, name: str) -> bytes:
raise NotImplementedError()
def exists(self, service: str, name: str) -> bool: