From f11724af91a3c061d9c9207825ac2794a6d5b5f7 Mon Sep 17 00:00:00 2001 From: maurycyp Date: Thu, 5 Dec 2013 00:43:48 -0500 Subject: [PATCH] Removed 'return' in __init__ --- formtools/tests/wizard/test_forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/formtools/tests/wizard/test_forms.py b/formtools/tests/wizard/test_forms.py index 386e448..fedb799 100644 --- a/formtools/tests/wizard/test_forms.py +++ b/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):