diff --git a/core/models.py b/core/models.py index 54124c9..257430c 100644 --- a/core/models.py +++ b/core/models.py @@ -390,7 +390,7 @@ def __iter__(self): yield attr, value -class Finance(models.Model, IterMixin): +class Finance(models.Model, IterMixin): # pylint: disable=too-many-instance-attributes class Meta: ordering = ['user', '-matchday'] unique_together = (('user', 'matchday'),)