clan-cli sops: fix super class interface compliance
Some checks failed
checks / check-links (pull_request) Successful in 22s
checks / checks-impure (pull_request) Successful in 1m55s
checks / checks (pull_request) Failing after 2m48s

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

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: