forked from mirrors/bookwyrm
disable pylint suppression
I don't know what this does so I removed it - maybe I'll find out!
This commit is contained in:
parent
dafda649f1
commit
57b2c83c64
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ class GroupMemberInvitation(models.Model):
|
||||||
models.UniqueConstraint(fields=["group", "user"], name="unique_invitation")
|
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"""
|
"""make sure the membership doesn't already exist"""
|
||||||
# if there's an invitation for a membership that already exists, accept it
|
# if there's an invitation for a membership that already exists, accept it
|
||||||
# without changing the local database state
|
# without changing the local database state
|
||||||
|
|
Loading…
Reference in a new issue