From f2f6beb770f6367896fa762af9939010c45c2740 Mon Sep 17 00:00:00 2001 From: Brian Wiborg Date: Sat, 27 Sep 2025 22:56:20 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Add=20missing=20quotes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ohmyapi/core/templates/app/routes.py.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ohmyapi/core/templates/app/routes.py.j2 b/src/ohmyapi/core/templates/app/routes.py.j2 index 1e4d792..a5a4d4f 100644 --- a/src/ohmyapi/core/templates/app/routes.py.j2 +++ b/src/ohmyapi/core/templates/app/routes.py.j2 @@ -5,7 +5,7 @@ from . import models # Expose your app's routes via `router = fastapi.APIRouter`. # Use prefixes wisely to avoid cross-app namespace-collisions. # Tags improve the UX of the OpenAPI docs at /docs. -router = APIRouter(prefix="/{{ app_name }}", tags=[{{ app_name }}]) +router = APIRouter(prefix="/{{ app_name }}", tags=['{{ app_name }}']) @router.get("/")