Skip to content

Commit

Permalink
fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
emileten committed Oct 31, 2023
1 parent ccfce6b commit a7aea2b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/ingestor-api/runtime/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}
return {"root_path": config.settings.root_path}

0 comments on commit a7aea2b

Please sign in to comment.