discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: 'Member' object has no attribute 'avatar_url'
@bot.command()
async def avatar(ctx, user: discord.Member):
embed = discord.Embed(color = 0xff9900, title = 'Аватар')
embed.set_image(url = user.avatar_url)
await ctx.send(embed = embed)