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 Nov 21, 2023
1 parent 15cf2a3 commit 10fdba9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/backend/app/projects/project_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,9 @@ async def read_project_summaries(
skip = (page - 1) * results_per_page
limit = results_per_page

projects = project_crud.get_project_summaries(db, user_id, skip, limit, hashtags, search)
projects = project_crud.get_project_summaries(
db, user_id, skip, limit, hashtags, search
)

total_projects = len(projects)
hasNext = (page * results_per_page) < total_projects
Expand Down

0 comments on commit 10fdba9

Please sign in to comment.