Removed 'return' in __init__

This commit is contained in:
maurycyp 2013-12-05 00:43:48 -05:00 committed by Tim Graham
parent 1864c6b5ad
commit ae734b75c1
1 changed files with 1 additions and 1 deletions

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