This commit is contained in:
Jon Herron 2023-03-07 10:00:16 -05:00
parent 2d80a80bd2
commit b5fc01230d
1 changed files with 2 additions and 2 deletions

View File

@ -47,8 +47,8 @@ class SecretService:
) from e
return secret_model
@classmethod
def get_secret(cls, key: str) -> SecretModel:
@staticmethod
def get_secret(key: str) -> SecretModel:
"""Get_secret."""
secret = db.session.query(SecretModel).filter(SecretModel.key == key).first()
if isinstance(secret, SecretModel):