We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4585ac1 commit e8abcecCopy full SHA for e8abcec
1 file changed
techsupport_bot/commands/voting.py
@@ -701,7 +701,7 @@ async def remind_vote(
701
702
non_voters = [v for v in eligible_voters if v not in voted_voters]
703
704
- # Theoretically we can exceed the max length of a discord message. Cut at 60 just to protect us.
+ # Theoretically we can exceed the max length of a discord message. Cut at 60 just in case.
705
# We would probably error somewhere else if 61 people ever could vote though
706
mention_string = " ".join(f"<@{v}>" for v in non_voters[:60])
707
0 commit comments