diff options
| author | maurycyp <github.com@wayheavy.com> | 2013-12-05 00:43:48 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-12-05 07:09:36 -0500 |
| commit | ae734b75c1fc365be9c2e2a08c8c569166233149 (patch) | |
| tree | bc26faab056977ccc693ef16243934aa2cd70fae | |
| parent | 1864c6b5ad70c3c403bc5621fb5856a114a98845 (diff) | |
Removed 'return' in __init__
| -rw-r--r-- | django/contrib/formtools/tests/wizard/test_forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/formtools/tests/wizard/test_forms.py b/django/contrib/formtools/tests/wizard/test_forms.py index 386e448485..fedb799669 100644 --- a/django/contrib/formtools/tests/wizard/test_forms.py +++ b/django/contrib/formtools/tests/wizard/test_forms.py @@ -48,7 +48,7 @@ class CustomKwargsStep1(Step1): def __init__(self, test=None, *args, **kwargs): self.test = test - return super(CustomKwargsStep1, self).__init__(*args, **kwargs) + super(CustomKwargsStep1, self).__init__(*args, **kwargs) class TestModel(models.Model): |
