Skip to content

Commit

Permalink
🎨 WHY IS DOUBLE QUOTES PREFERRED
Browse files Browse the repository at this point in the history
  • Loading branch information
joyliu-q authored Nov 1, 2024
1 parent 0882241 commit cf3343f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/accounts/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ def post(self, request, format=None):
).exclude(codename="penn_clubs_admin")
for perm in perms:
perm.user_set.clear()
penn_clubs_admin_permission = Permission.objects.get(codename='penn_clubs_admin')
penn_clubs_admin_permission = Permission.objects.get(codename="penn_clubs_admin")
users_to_reset = User.objects.filter(
Q(is_superuser=True) | Q(is_staff=True)
).exclude(
Expand Down

0 comments on commit cf3343f

Please sign in to comment.