From a7aea2bd29cb207ab1e98321cdcc67c5f41e68a8 Mon Sep 17 00:00:00 2001 From: emileten Date: Tue, 31 Oct 2023 15:34:44 +0900 Subject: [PATCH] fix linting issues --- lib/ingestor-api/runtime/src/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ingestor-api/runtime/src/main.py b/lib/ingestor-api/runtime/src/main.py index bd6a62a..6d217f6 100644 --- a/lib/ingestor-api/runtime/src/main.py +++ b/lib/ingestor-api/runtime/src/main.py @@ -124,9 +124,10 @@ def who_am_i(username=Depends(dependencies.get_username)): """ return {"username": username} + @app.get("/root_path") def return_root_path(): """ Return root path for the provided request """ - return {"root_path": config.settings.root_path} \ No newline at end of file + return {"root_path": config.settings.root_path}