Removed 'return' in __init__

This commit is contained in:
maurycyp
2013-12-05 00:43:48 -05:00
committed by Tim Graham
parent ea4498b52f
commit f11724af91

View File

@@ -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):