From 7a06f0f3bfe1a340197f76e4e49cee423c107d65 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 15 May 2017 21:31:38 -0400 Subject: [PATCH] Client.get_user_info uses int for IDs not str. Realistically both will work but let's not say that. --- discord/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/client.py b/discord/client.py index db69ccac9..cc6c0249c 100644 --- a/discord/client.py +++ b/discord/client.py @@ -892,7 +892,7 @@ class Client: Parameters ----------- - user_id: str + user_id: int The user's ID to fetch from. Returns