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 Jul 31, 2024
1 parent 64ce861 commit a8ee087
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/blueprints/assessments/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,11 @@ def get_sorted_application_overviews(application_overviews, column, reverse=Fals
if g.account_id in application["assigned_to_ids"]
]

fund_user_aliases = [user.get("full_name", user["email_address"]) for user in users_for_fund] if users_for_fund else []
fund_user_aliases = (
[user.get("full_name", user["email_address"]) for user in users_for_fund]
if users_for_fund
else []
)

reporting_to_user_applications = [
overview
Expand Down

0 comments on commit a8ee087

Please sign in to comment.