From e1d990df1b5adc4f4bd19f1fc66167a0af684af6 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Mon, 16 Jan 2023 08:34:15 +0000 Subject: [PATCH] Format Python code with psf/black push --- cogs/translation_service_cog.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cogs/translation_service_cog.py b/cogs/translation_service_cog.py index 0ca3e8e..fc217a4 100644 --- a/cogs/translation_service_cog.py +++ b/cogs/translation_service_cog.py @@ -80,7 +80,9 @@ class TranslationService(discord.Cog, name="TranslationService"): await ctx.respond(f"There was an error with the DeepL API: {e.message}") return - await ctx.respond(embed=build_translation_embed(text, response, target_language)) + await ctx.respond( + embed=build_translation_embed(text, response, target_language) + ) async def translate_action(self, ctx, message): await ctx.defer(ephemeral=True)