fix: add missing bracket

This commit is contained in:
2026-03-12 12:41:33 +01:00
parent 2e37ddcb8e
commit 7fea3bf315

View File

@@ -469,7 +469,7 @@ def create_app():
enforce_load_from_env = os.environ.get("ENFORCE_LOAD_FROM_ENV") or ""
missing = [k for k in required_keys if k not in os.environ]
if missing and enforce_load_from_env.lower() == "true":
print(f"ENFORCE_LOAD_FROM_ENV is 'true' but we are missing: {missing} - Abort."
print(f"ENFORCE_LOAD_FROM_ENV is 'true' but we are missing: {missing} - Abort.")
sys.exit(1)
for key in LOAD_FROM_ENV: