Skip to content

Commit

Permalink
Remove two accidental print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
JelteF committed Mar 4, 2025
1 parent 5fc4f99 commit 256bf72
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pgcommitfest/commitfest/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ def __init__(self, data, *args, **kwargs):

userchoices = [(-1, "* All"), (-2, "* None"), (-3, "* Yourself")]

print(data)
selected_user_ids = set()
if data and "author" in data:
try:
Expand All @@ -51,7 +50,6 @@ def __init__(self, data, *args, **kwargs):
(u.id, f"{u.first_name} {u.last_name} ({u.username})")
for u in User.objects.filter(pk__in=selected_user_ids)
)
print(userchoices)

self.fields["targetversion"] = forms.ChoiceField(
choices=[("-1", "* All"), ("-2", "* None")]
Expand Down

0 comments on commit 256bf72

Please sign in to comment.