Kaydet (Commit) ae734b75 authored tarafından maurycyp's avatar maurycyp Kaydeden (comit) Tim Graham

Removed 'return' in __init__

üst 1864c6b5
...@@ -48,7 +48,7 @@ class CustomKwargsStep1(Step1): ...@@ -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):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment