From 17312348fc33b624514f2424733c1bf2e129283f Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Wed, 21 Feb 2024 11:48:27 -0500 Subject: [PATCH] fix(tts): awaited a coroutine --- tts/tts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tts/tts.py b/tts/tts.py index a5b9fec..43ded90 100644 --- a/tts/tts.py +++ b/tts/tts.py @@ -45,7 +45,7 @@ class TTS(commands.Cog): @commands.admin_or_permissions(manage_guild=True) async def tts(self, ctx: commands.Context): """Text to Speech settings""" - await ctx.send(embed=embed, view=Menu(ctx)) + await ctx.send(embed=await embed(ctx), view=Menu(ctx)) @tts.command(name="google") @commands.is_owner()