We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 241a5bc commit 4df41f9Copy full SHA for 4df41f9
1 file changed
cogs/make_member.py
@@ -81,10 +81,13 @@ async def _perform_make_member(
81
return False, INVALID_GROUP_MEMBER_ID_MESSAGE
82
83
if member_role in discord_member.roles:
84
- return (False, (
85
- ":information_source: No changes made. "
86
- "You're already a member - why are you trying this again? :information_source:"
87
- ))
+ return (
+ False,
+ (
+ ":information_source: No changes made. "
88
+ "You're already a member - why are you trying this again? :information_source:"
89
+ ),
90
+ )
91
92
if await GroupMadeMember.objects.filter(
93
hashed_group_member_id=GroupMadeMember.hash_group_member_id(
0 commit comments