From 15ef4c03d13975d04361b4b4d276fe8390ebcbe7 Mon Sep 17 00:00:00 2001 From: linuskmr Date: Sat, 25 Dec 2021 18:34:56 +0100 Subject: [PATCH] Remove unnecessary summary for add project --- backend/src/routes/projects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/routes/projects.py b/backend/src/routes/projects.py index 528b1db..89f5d67 100644 --- a/backend/src/routes/projects.py +++ b/backend/src/routes/projects.py @@ -22,7 +22,7 @@ async def all_projects( return projects -@router.post("/", status_code=status.HTTP_201_CREATED, summary="Add a project", response_model=ProjectRead) +@router.post("/", status_code=status.HTTP_201_CREATED, response_model=ProjectRead) async def add_project( *, project: ProjectCreate,