Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ansibleguy committed Jul 13, 2024
1 parent cdb7a0d commit 4e8651d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansibleguy-webui/aw/views/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def manage(request) -> HttpResponse:
executions = {}
next_executions = {}
execution_results_hosts = {}
credentials_user = [creds for creds in JobUserCredentials.objects.filter(user=request.user)]
credentials_user = JobUserCredentials.objects.filter(user=request.user)
credentials_global = [
creds for creds in JobGlobalCredentials.objects.all()
if has_credentials_permission(user=request.user, credentials=creds, permission_needed=CHOICE_PERMISSION_READ)
Expand Down

0 comments on commit 4e8651d

Please sign in to comment.