Browse Source

Use display_avatar instead of avatar in converters example

pull/7548/head
Stocker 3 years ago
committed by GitHub
parent
commit
e63c9bad85
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      examples/converters.py

2
examples/converters.py

@ -30,7 +30,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.display_avatar.url
await ctx.send(f'User found: {user_id} -- {username}\n{avatar}')
@userinfo.error

Loading…
Cancel
Save