sync: README — build linux/amd64 (ADR-061)
Some checks failed
__APP_NAME__ — build & deploy / Calidad + build + push (push) Failing after 49s
__APP_NAME__ — build & deploy / Helm upgrade --install (push) Has been skipped

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Coralware Template Sync
2026-05-21 23:50:54 -05:00
parent 975673a844
commit a3aed377e0

View File

@@ -52,9 +52,7 @@ def create_app() -> FastAPI:
app = FastAPI(
title="__APP_NAME__",
version="0.1.0",
dependencies=(
[Depends(_require_auth_dep)] if settings.OPENAPI_REQUIRE_AUTH else []
),
dependencies=([Depends(_require_auth_dep)] if settings.OPENAPI_REQUIRE_AUTH else []),
)
@app.middleware("http")