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 Sep 30, 2024
1 parent f43feab commit 30c075d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backend/services/project_search_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,9 @@ def search_projects_as_csv(search_dto: ProjectSearchDTO, user) -> str:
row["difficulty"] = ProjectDifficulty(row["difficulty"]).name
row["status"] = ProjectStatus(row["status"]).name
row["total_area"] = round(row["total_area"], 3)
row["total_contributors"] = Project.get_project_total_contributions(row["id"])
row["total_contributors"] = Project.get_project_total_contributions(
row["id"]
)

if is_user_admin:
partners_names = (
Expand Down

0 comments on commit 30c075d

Please sign in to comment.