Fix indentation in matchy.py

This commit is contained in:
Marc Di Luzio 2024-08-11 19:12:44 +01:00
parent c77c83c929
commit a5d7dae851

View file

@ -151,8 +151,8 @@ async def match(interaction: discord.Interaction, members_min: int = None):
view.add_item(DynamicGroupButton(members_min)) view.add_item(DynamicGroupButton(members_min))
else: else:
# Let a non-matcher know why they don't have the button # Let a non-matcher know why they don't have the button
msg += f"\n\nYou'll need the { msg += f"\n\nYou'll need the {state.AuthScope.MATCHER}"
state.AuthScope.MATCHER} scope to post this to the channel, sorry!" + " scope to post this to the channel, sorry!"
await interaction.response.send_message(msg, ephemeral=True, silent=True, view=view) await interaction.response.send_message(msg, ephemeral=True, silent=True, view=view)