diff options
author | Parker <contact@pkrm.dev> | 2024-10-31 00:26:00 -0500 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-10-31 00:26:00 -0500 |
commit | 70e612882d1093b133d13302dccfba6aa2778474 (patch) | |
tree | 6b26a4dc377ccf209c37eabf673d6031fdc10987 /code/cogs/bug.py | |
parent | c1b229f34c010108b0e7eb92de2102dfc07ae70c (diff) |
`black --line-length 79`
Diffstat (limited to 'code/cogs/bug.py')
-rw-r--r-- | code/cogs/bug.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/code/cogs/bug.py b/code/cogs/bug.py index 2162efe..fecf5e6 100644 --- a/code/cogs/bug.py +++ b/code/cogs/bug.py @@ -27,7 +27,8 @@ class BugReport(discord.ui.Modal, title="Report a bug"): async def on_submit(self, interaction: discord.Interaction): await interaction.response.send_message( - f"Thanks for your bug report. We will get back to you as soon as possible", + f"Thanks for your bug report. We will get back to you as soon as" + f" possible", ephemeral=True, ) channel = self.bot.get_channel(BUG_CHANNEL_ID) |