From c48050ea04d7c7967748518fa17f05d852efab8d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 29 Mar 2026 19:44:40 +0000 Subject: [PATCH] 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> --- backend/app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/main.py b/backend/app/main.py index 0b304fa..f1c994a 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -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")