style: suppress F811 on app = create_app() in main.py

Agent-Logs-Url: https://github.com/christianlouis/dmarq/sessions/88ca66b3-326b-4d37-8f4e-ae6f1f18c324

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-29 19:44:40 +00:00
parent 5a753ef3cf
commit c48050ea04
+1 -1
View File
@@ -267,7 +267,7 @@ def create_app() -> FastAPI:
return application
app = create_app()
app = create_app() # noqa: F811 intentional rebind; `app` package imported above for side-effects
# Initialize Jinja2 templates
templates_dir = os.path.join(os.path.dirname(__file__), "templates")