clan-cli password-store: remove debug print

This commit is contained in:
lassulus 2024-02-02 17:29:35 +01:00
parent bcdde990ff
commit 605b03bb91

View File

@ -35,7 +35,6 @@ class SecretStore:
"PASSWORD_STORE_DIR", f"{os.environ['HOME']}/.password-store"
)
secret_path = Path(password_store) / f"machines/{self.machine.name}/{name}.gpg"
print(f"checking {secret_path}")
return secret_path.exists()
def generate_hash(self) -> bytes: