Skip to content

Commit

Permalink
Add API docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
sallybg committed Aug 26, 2024
1 parent 589c050 commit 5b3c2fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/api/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Provide VRS mapping utilities API"""
1 change: 1 addition & 0 deletions src/api/routers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Provide routers for dcd mapping API"""
3 changes: 1 addition & 2 deletions src/api/server_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@

# If the application is not already being run within a uvicorn server, start uvicorn here.
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000)

uvicorn.run(app, host="0.0.0.0", port=8000) # noqa: S104

0 comments on commit 5b3c2fb

Please sign in to comment.