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)