From b9171d9c3d0bc06bccb0d728eb76f8042cc66418 Mon Sep 17 00:00:00 2001 From: lassulus Date: Sun, 3 Mar 2024 04:07:01 +0100 Subject: [PATCH] clan-cli sops: fix super class interface compliance --- pkgs/clan-cli/clan_cli/secrets/modules/sops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/clan-cli/clan_cli/secrets/modules/sops.py b/pkgs/clan-cli/clan_cli/secrets/modules/sops.py index 3f91d604..e2c0bb07 100644 --- a/pkgs/clan-cli/clan_cli/secrets/modules/sops.py +++ b/pkgs/clan-cli/clan_cli/secrets/modules/sops.py @@ -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: