From 9d740eb8b15de31f1c5520659df683d90342bb44 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 26 Oct 2013 12:15:03 -0700 Subject: Fix all violators of E231 --- tests/model_forms/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/model_forms') diff --git a/tests/model_forms/tests.py b/tests/model_forms/tests.py index 0ca96166bc..0db4ad7567 100644 --- a/tests/model_forms/tests.py +++ b/tests/model_forms/tests.py @@ -115,7 +115,7 @@ class ArticleForm(forms.ModelForm): class PartialArticleForm(forms.ModelForm): class Meta: model = Article - fields = ('headline','pub_date') + fields = ('headline', 'pub_date') class RoykoForm(forms.ModelForm): -- cgit v1.3