Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Dec 10, 2023
1 parent 8d6d16c commit 6065d36
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 @@ -172,7 +172,7 @@ def leave(self, member: User):
if self.members.filter(id=member.id).first() is None:
raise IndexError("User is not in team")
# remove the member
self.members.remove(member) # noqa
self.members.remove(member) # noqa

def update_current_qr_i(self, i: int):
self.current_qr_i = max(self.current_qr_i, i)
Expand Down

0 comments on commit 6065d36

Please sign in to comment.