summaryrefslogtreecommitdiff
path: root/django/forms/models.py
diff options
context:
space:
mode:
authorAlasdair Nicol <alasdair@memset.com>2013-10-18 00:58:02 +0100
committerAlasdair Nicol <alasdair@memset.com>2013-10-18 01:46:24 +0100
commitbab9123daa5d05150951f74183906a76d2b0cf27 (patch)
tree4fc24535f85f84c69e64c6eac654294725d906df /django/forms/models.py
parent65d1d65d52a87bba22845bcb7c3c921a8789ec19 (diff)
Fixed #21268 -- Fixed E303 pep8 warnings
Diffstat (limited to 'django/forms/models.py')
-rw-r--r--django/forms/models.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/forms/models.py b/django/forms/models.py
index 1a6e7d2a7a..3b01e9b6c7 100644
--- a/django/forms/models.py
+++ b/django/forms/models.py
@@ -840,7 +840,6 @@ class BaseInlineFormSet(BaseModelFormSet):
return 0
return super(BaseInlineFormSet, self).initial_form_count()
-
def _construct_form(self, i, **kwargs):
form = super(BaseInlineFormSet, self)._construct_form(i, **kwargs)
if self.save_as_new: