diff --git a/examples/converters.py b/examples/converters.py index 0bf92b49..4a23e116 100644 --- a/examples/converters.py +++ b/examples/converters.py @@ -28,7 +28,7 @@ async def userinfo(ctx: commands.Context, user: discord.User): user_id = user.id username = user.name avatar = user.display_avatar.url - await ctx.send(f'User found: {user_id} -- {username}\n{avatar}') + await ctx.send(f"User found: {user_id} -- {username}\n{avatar}") @userinfo.error async def userinfo_error(ctx: commands.Context, error: commands.CommandError):