From 244c982121859b93d925afc27ab77fd69bcaabd4 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 20 Jan 2026 10:37:07 -0800 Subject: [PATCH] fix static scan --- app/cloudfoundry_config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/cloudfoundry_config.py b/app/cloudfoundry_config.py index 7895b591c..0af4ac63c 100644 --- a/app/cloudfoundry_config.py +++ b/app/cloudfoundry_config.py @@ -9,10 +9,10 @@ class CloudfoundryConfig: self.s3_buckets = {bucket["name"]: bucket["credentials"] for bucket in buckets} self._empty_bucket_credentials = { "bucket": "", - "access_key_id": "", # pragma: allowlist secret - "secret_access_key": "", # pragma: allowlist secret + "access_key_id": "", # nosec B105 + "secret_access_key": "", # nosec B105 "region": "", - } # pragma: allowlist secret + } @property def database_url(self):