I'm trying to make my discord bot to execute a file and afterward send a message that the file has been executed but when I add the ctx.send command it does not send in the server. It does execute the bat file but the bot does not send a message saying "Opening Discord"
async def discord(self, ctx):
await os.system("discord.bat")
await ctx.send('Opening discord')