Skip to content

Commit 5b3c2fb

Browse files
committed
Add API docstrings
1 parent 589c050 commit 5b3c2fb

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/api/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Provide VRS mapping utilities API"""

src/api/routers/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Provide routers for dcd mapping API"""

src/api/server_main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,4 @@
1111

1212
# If the application is not already being run within a uvicorn server, start uvicorn here.
1313
if __name__ == "__main__":
14-
uvicorn.run(app, host="0.0.0.0", port=8000)
15-
14+
uvicorn.run(app, host="0.0.0.0", port=8000) # noqa: S104

0 commit comments

Comments
 (0)