Skip to content

Commit 256bf72

Browse files
committed
Remove two accidental print statements
1 parent 5fc4f99 commit 256bf72

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pgcommitfest/commitfest/forms.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ def __init__(self, data, *args, **kwargs):
3232

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

35-
print(data)
3635
selected_user_ids = set()
3736
if data and "author" in data:
3837
try:
@@ -51,7 +50,6 @@ def __init__(self, data, *args, **kwargs):
5150
(u.id, f"{u.first_name} {u.last_name} ({u.username})")
5251
for u in User.objects.filter(pk__in=selected_user_ids)
5352
)
54-
print(userchoices)
5553

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

0 commit comments

Comments
 (0)