diff --git a/src/spiffworkflow_backend/routes/process_api_blueprint.py b/src/spiffworkflow_backend/routes/process_api_blueprint.py index 7bb0b1bb..5ea10af6 100644 --- a/src/spiffworkflow_backend/routes/process_api_blueprint.py +++ b/src/spiffworkflow_backend/routes/process_api_blueprint.py @@ -1309,7 +1309,7 @@ def delete_secret(key: str) -> Response: def add_allowed_process_path(body: dict) -> Response: """Get allowed process paths.""" secret = SecretService().get_secret(body["secret_key"]) - assert secret + assert secret # noqa: S101 allowed_process_path = SecretService.add_allowed_process( secret.id, g.user.id, body["allowed_relative_path"] )