Merge pull request 'abstract_fixes' (#861) from abstract_fixes into main
All checks were successful
checks / test (push) Successful in 30s
checks-impure / test (push) Successful in 1m49s

This commit is contained in:
clan-bot 2024-02-20 10:51:42 +00:00
commit 413e172cbd

View File

@ -23,13 +23,8 @@ class SecretStoreBase(ABC):
def exists(self, service: str, name: str) -> bool:
pass
@abstractmethod
def generate_hash(self) -> bytes:
pass
@abstractmethod
def update_check(self) -> bool:
pass
return False
@abstractmethod
def upload(self, output_dir: Path) -> None: