Fix AttributeError in examples

This commit is contained in:
apple502j
2021-04-27 21:09:01 +09:00
committed by GitHub
parent 9f3551926a
commit 127b3239e9
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ async def userinfo(ctx: commands.Context, user: discord.User):
# and can do the following:
user_id = user.id
username = user.name
avatar = user.avatar_url
avatar = user.avatar.url
await ctx.send(f'User found: {user_id} -- {username}\n{avatar}')
@userinfo.error