From 15a6710c17a34edb7b78a596a027ac3f741ba1a5 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Sun, 8 Mar 2026 17:35:02 +0000 Subject: [PATCH] [lint] Format template after change. --- fastapi-vue/fastapi_vue/staticfiles.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fastapi-vue/fastapi_vue/staticfiles.py b/fastapi-vue/fastapi_vue/staticfiles.py index 4756275..c4ea8db 100644 --- a/fastapi-vue/fastapi_vue/staticfiles.py +++ b/fastapi-vue/fastapi_vue/staticfiles.py @@ -220,7 +220,9 @@ class Frontend: if self._catch_all: # Register catch-all immediately (works without load) path = self._mount_path + "{path:path}" - app.api_route(path, methods=["GET", "HEAD"], name="frontend", response_model=None)(self.handle) + app.api_route(path, methods=["GET", "HEAD"], name="frontend", response_model=None)( + self.handle + ) def _register_routes(self) -> None: """Register individual routes for each loaded file (non-catch_all mode)."""