Removed 'return' in __init__
This commit is contained in:
parent
1864c6b5ad
commit
ae734b75c1
|
@ -48,7 +48,7 @@ class CustomKwargsStep1(Step1):
|
||||||
|
|
||||||
def __init__(self, test=None, *args, **kwargs):
|
def __init__(self, test=None, *args, **kwargs):
|
||||||
self.test = test
|
self.test = test
|
||||||
return super(CustomKwargsStep1, self).__init__(*args, **kwargs)
|
super(CustomKwargsStep1, self).__init__(*args, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
class TestModel(models.Model):
|
class TestModel(models.Model):
|
||||||
|
|
Loading…
Reference in New Issue