From 0a60d7e2b0894931157ac9352aa364a4a9cb40ed Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Sat, 31 Dec 2022 11:03:40 +0000 Subject: [PATCH] Format Python code with psf/black push --- cogs/gpt_3_commands_and_converser.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cogs/gpt_3_commands_and_converser.py b/cogs/gpt_3_commands_and_converser.py index f0257a9..af1e40f 100644 --- a/cogs/gpt_3_commands_and_converser.py +++ b/cogs/gpt_3_commands_and_converser.py @@ -616,7 +616,9 @@ class GPT3ComCon(commands.Cog, name="GPT3ComCon"): # General catch case for everything except Exception: message = "Something went wrong, please try again later. This may be due to upstream issues on the API, or rate limiting." - await ctx.send_followup(message) if from_context else await ctx.reply(message) + await ctx.send_followup(message) if from_context else await ctx.reply( + message + ) if user_id in self.awaiting_responses: self.awaiting_responses.remove(user_id) traceback.print_exc()