Skip to content

Commit

Permalink
personal.views: Remove unnecessary semicolon
Browse files Browse the repository at this point in the history
Fixes 50dd4a6 ("contactlist: Add
selector for Position and Special Function")
  • Loading branch information
donald committed Feb 9, 2025
1 parent be4a8cd commit 59d0e0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpicms/personal/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def get_queryset(self):
group_pk = self.request.GET.get('group')
position_pk = self.request.GET.get('position')
special_function_pk = self.request.GET.get('special_function')
qs = super().get_queryset();
qs = super().get_queryset()
if group_pk is not None and group_pk != "":
qs = qs.filter(groups=group_pk)

Expand Down

0 comments on commit 59d0e0b

Please sign in to comment.