Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian leggett committed Feb 24, 2025
1 parent 5fd35d2 commit ac6f75a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dataworkspace/dataworkspace/apps/applications/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1098,7 +1098,9 @@ def visualisation_approvals_html_GET(request, gitlab_project):
if waffle.flag_is_active(request, settings.THIRD_APPROVER):
is_owner = gitlab_is_project_owner(current_gitlab_user[0], gitlab_project["id"])
approved_users = [d.approver.get_full_name() for d in approvals]
project_approvals = [member for member in project_members if member["name"] in approved_users]
project_approvals = [
member for member in project_members if member["name"] in approved_users
]

form = VisualisationApprovalForm(
instance=approval,
Expand Down

0 comments on commit ac6f75a

Please sign in to comment.