From 51cb9fde8eeff51f1584b7b38fb419a3b4dfb137 Mon Sep 17 00:00:00 2001 From: Michael Wittig Date: Sun, 18 Dec 2016 15:47:43 +0100 Subject: [PATCH] #99 ignore too many instance attributes for finance model --- core/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'),)