From 33a30bef062ff124fee6651af130cead560a656a Mon Sep 17 00:00:00 2001 From: giles Date: Tue, 10 Feb 2026 18:26:26 +0000 Subject: [PATCH] fix: remove duplicate market_slug in blueprint registration The url_prefix was being set both in register_market_bp() and app.register_blueprint(), causing a SyntaxError from duplicate route parameter. Co-Authored-By: Claude Opus 4.6 --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 35391d5..41be91c 100644 --- a/app.py +++ b/app.py @@ -57,7 +57,7 @@ def create_app() -> "Quart": # Market blueprint scoped under // app.register_blueprint( register_market_bp( - url_prefix="/", + url_prefix="/", title=config()["coop_title"], ), url_prefix="/",