diff options
| author | Sebastian Law <[email protected]> | 2021-05-04 04:21:59 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-05-04 07:21:59 -0400 |
| commit | b82a0dc6fd82df1dc01060ae64ee3b2f6512f288 (patch) | |
| tree | 6cb8ec10960fec615fddaaccfedb5876d72ec9ea /discord/client.py | |
| parent | Add get_user to the things intents.members affects (diff) | |
| download | discord.py-b82a0dc6fd82df1dc01060ae64ee3b2f6512f288.tar.xz discord.py-b82a0dc6fd82df1dc01060ae64ee3b2f6512f288.zip | |
[docs] remove mentions of bot only usability
Diffstat (limited to 'discord/client.py')
| -rw-r--r-- | discord/client.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/discord/client.py b/discord/client.py index 7b361f16..2ed8b4ef 100644 --- a/discord/client.py +++ b/discord/client.py @@ -1255,10 +1255,9 @@ class Client: async def fetch_user(self, user_id): """|coro| - Retrieves a :class:`~discord.User` based on their ID. This can only - be used by bot accounts. You do not have to share any guilds - with the user to get this information, however many operations - do require that you do. + Retrieves a :class:`~discord.User` based on their ID. + You do not have to share any guilds with the user to get this information, + however many operations do require that you do. .. note:: |