1
0
Fork 0

Style fixes suggested by pylint.

This commit is contained in:
Adam Kelly 2020-04-22 14:53:22 +01:00
parent 894f76f843
commit fba78d7a0e
26 changed files with 37 additions and 73 deletions

View file

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