From 09110a546024172709ba36134acd9f949d92588b Mon Sep 17 00:00:00 2001 From: Johannes Hoppe Date: Tue, 21 Feb 2017 14:07:16 +0100 Subject: [PATCH] Fix syntax --- tests/testapp/forms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/testapp/forms.py b/tests/testapp/forms.py index 8dfaa41..37692a2 100644 --- a/tests/testapp/forms.py +++ b/tests/testapp/forms.py @@ -124,6 +124,7 @@ class ArtistModelSelect2MultipleWidgetForm(forms.Form): search_fields=['title__icontains'], ), queryset=models.Artist.objects.all(), required=False) + NUMBER_CHOICES = [ (1, 'One'), (2, 'Two'),