Skip to content

Commit

Permalink
#99 ignore too many instance attributes for finance model
Browse files Browse the repository at this point in the history
  • Loading branch information
Sh4kE committed Dec 18, 2016
1 parent c0ecf18 commit 51cb9fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'),)
Expand Down

0 comments on commit 51cb9fd

Please sign in to comment.