diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-31 08:42:28 -0700 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-31 08:42:28 -0700 |
| commit | 726ded5708e4e8767e69a6f6f6a039e75667ce03 (patch) | |
| tree | f692a4abede11f50830f6935c086676f3f1db778 /django/contrib/formtools/tests/forms.py | |
| parent | a023a84c060eaaa4cf520c33d9c73adab7af3d30 (diff) | |
Started attackign the next flake8 violation
Diffstat (limited to 'django/contrib/formtools/tests/forms.py')
| -rw-r--r-- | django/contrib/formtools/tests/forms.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/django/contrib/formtools/tests/forms.py b/django/contrib/formtools/tests/forms.py index 6f3ce4b0bd..354297870a 100644 --- a/django/contrib/formtools/tests/forms.py +++ b/django/contrib/formtools/tests/forms.py @@ -1,15 +1,18 @@ from django import forms + class TestForm(forms.Form): field1 = forms.CharField() field1_ = forms.CharField() bool1 = forms.BooleanField(required=False) date1 = forms.DateField(required=False) + class HashTestForm(forms.Form): name = forms.CharField() bio = forms.CharField() + class HashTestBlankForm(forms.Form): name = forms.CharField(required=False) bio = forms.CharField(required=False) |
