Skip to content

Commit 07b4ab0

Browse files
committed
bug: remove duplicate upload endpoint tag
1 parent 1ce55b4 commit 07b4ab0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

api/routers/upload.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
VALID_TABLES = ["cohort", "course", "financial_aid"]
1414

1515

16-
@router.get("/", tags=["Upload"])
16+
@router.get("/")
1717
async def upload_info():
1818
"""Get information about the upload endpoints."""
1919
return {
@@ -42,7 +42,7 @@ async def upload_info():
4242
}
4343

4444

45-
@router.post("/{database}/{table}/upload", tags=["Upload"])
45+
@router.post("/{database}/{table}/upload")
4646
async def upload_data(
4747
database: str,
4848
table: str,
@@ -131,7 +131,7 @@ async def upload_data(
131131
)
132132

133133

134-
@router.get("/templates/{table}", tags=["Upload"])
134+
@router.get("/templates/{table}")
135135
async def get_template_info(table: str):
136136
"""
137137
Get template information for a specific table including required and optional fields.

0 commit comments

Comments
 (0)