From a5d7dae8517bef8cd4df0099740e63c84a9dd3d9 Mon Sep 17 00:00:00 2001 From: Marc Di Luzio Date: Sun, 11 Aug 2024 19:12:44 +0100 Subject: [PATCH] Fix indentation in matchy.py --- py/matchy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py/matchy.py b/py/matchy.py index ffd8c6e..f43d1f9 100755 --- a/py/matchy.py +++ b/py/matchy.py @@ -151,8 +151,8 @@ async def match(interaction: discord.Interaction, members_min: int = None): view.add_item(DynamicGroupButton(members_min)) else: # Let a non-matcher know why they don't have the button - msg += f"\n\nYou'll need the { - state.AuthScope.MATCHER} scope to post this to the channel, sorry!" + msg += f"\n\nYou'll need the {state.AuthScope.MATCHER}" + + " scope to post this to the channel, sorry!" await interaction.response.send_message(msg, ephemeral=True, silent=True, view=view)