mess = await ctx.send(embed=emb)
from asyncio import sleep
@commands.command()
async def test(self, ctx):
embed = discord.Embed(title="No")
msg = await ctx.send(embed=embed)
embed.description = "Well, actually, yes"
await sleep(5)
await msg.edit(embed=embed)