Style fixes suggested by pylint.
This commit is contained in:
parent
894f76f843
commit
fba78d7a0e
26 changed files with 37 additions and 73 deletions
|
@ -55,7 +55,7 @@ if 'sqlite' in settings.DATABASES['default']['ENGINE']:
|
|||
"""Care for DjangoArrayField's kwargs."""
|
||||
self.base_field = base_field
|
||||
self.size = size
|
||||
return super().__init__(**kwargs)
|
||||
super().__init__(**kwargs)
|
||||
|
||||
def deconstruct(self):
|
||||
"""Need to create migrations properly."""
|
||||
|
@ -64,4 +64,4 @@ if 'sqlite' in settings.DATABASES['default']['ENGINE']:
|
|||
'base_field': self.base_field.clone(),
|
||||
'size': self.size,
|
||||
})
|
||||
return name, path, args, kwargs
|
||||
return name, path, args, kwargs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue