From 138241b40691bb3218829d58ca6d8f97ca926c94 Mon Sep 17 00:00:00 2001 From: Benjamin Lu Date: Sat, 20 Dec 2025 11:30:10 -0800 Subject: [PATCH] refactor(api): extract internal route helpers Extracts directory validation logic into helper functions to improve code reusability and maintainability. --- api_server/routes/internal/internal_routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api_server/routes/internal/internal_routes.py b/api_server/routes/internal/internal_routes.py index a4286c986..ffe0249dd 100644 --- a/api_server/routes/internal/internal_routes.py +++ b/api_server/routes/internal/internal_routes.py @@ -81,4 +81,4 @@ class InternalRoutes: self._app = web.Application() self.setup_routes() self._app.add_routes(self.routes) - return self._app + return self._app \ No newline at end of file