From 9cf7985f35d4b3c4e3308bc1f3cee936d4a3e78b Mon Sep 17 00:00:00 2001 From: insert-usernamehere Date: Sat, 15 Apr 2023 10:35:54 -0400 Subject: [PATCH] minor changes --- transcribebot.py | 1 - 1 file changed, 1 deletion(-) diff --git a/transcribebot.py b/transcribebot.py index 2dd2cf0..30f6ab0 100644 --- a/transcribebot.py +++ b/transcribebot.py @@ -13,7 +13,6 @@ bot = commands.Bot(command_prefix='.') @bot.message_command(name="Transcrible") async def transcribe(inter: disnake.ApplicationCommandInteraction, message: disnake.Message): await inter.response.defer(ephemeral='true') - # Reversing the message and sending it back. await message.attachments[0].save("audio.ogg") mp3file = AudioSegment.from_ogg("audio.ogg") mp3file.export("audio.wav", format="wav")