From 57b2c83c6449d869ae10bc13fb8e787d70a0a847 Mon Sep 17 00:00:00 2001 From: Hugh Rundle Date: Mon, 4 Oct 2021 21:34:54 +1100 Subject: [PATCH] disable pylint suppression I don't know what this does so I removed it - maybe I'll find out! --- bookwyrm/models/group.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/models/group.py b/bookwyrm/models/group.py index 9a5d3a6c..c2dfcb06 100644 --- a/bookwyrm/models/group.py +++ b/bookwyrm/models/group.py @@ -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