AttributeError: 'coroutine' object has no attribute 'edit' with discord.py
So I was working on a discord bot, that should edit its own message on a command, and I tried many things, but I kept getting the AttributeError: ‘coroutine’ object has no attribute ‘edit’ Error, my code is this: embed = discord.Embed(title="title") embed.set_author(name="name", icon_url="image") embed.add_field(name="name", value="some text", inline=True) channel = Client.get_channel(channel-id) msg = channel.fetch_message(message-id) await… Read More AttributeError: 'coroutine' object has no attribute 'edit' with discord.py