Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 12, 2023
1 parent b874737 commit 58cb68e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/backend/app/projects/project_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,10 +381,11 @@ async def upload_multi_project_boundary(
# Get the number of tasks in a project
task_count = await tasks_crud.get_task_count_in_project(db, project_id)

return {"message": "Project Boundary Uploaded",
"project_id": f"{project_id}",
"task_count": task_count
}
return {
"message": "Project Boundary Uploaded",
"project_id": f"{project_id}",
"task_count": task_count,
}


@router.post("/task_split")
Expand Down

0 comments on commit 58cb68e

Please sign in to comment.