disable pylint suppression

I don't know what this does so I removed it - maybe I'll find out!
This commit is contained in:
Hugh Rundle 2021-10-04 21:34:54 +11:00
parent dafda649f1
commit 57b2c83c64

View file

@ -87,7 +87,7 @@ class GroupMemberInvitation(models.Model):
models.UniqueConstraint(fields=["group", "user"], name="unique_invitation")
]
def save(self, *args, **kwargs): # pylint: disable=arguments-differ
def save(self, *args, **kwargs):
"""make sure the membership doesn't already exist"""
# if there's an invitation for a membership that already exists, accept it
# without changing the local database state