Browse Source
Update create_dm documentation to say it's a coroutine
pull/6575/head
Alex Nørgaard
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
1 deletions
-
discord/user.py
|
|
@ -744,7 +744,9 @@ class User(BaseUser, discord.abc.Messageable): |
|
|
|
return [guild for guild in self._state._guilds.values() if guild.get_member(self.id)] |
|
|
|
|
|
|
|
async def create_dm(self): |
|
|
|
"""Creates a :class:`DMChannel` with this user. |
|
|
|
"""|coro| |
|
|
|
|
|
|
|
Creates a :class:`DMChannel` with this user. |
|
|
|
|
|
|
|
This should be rarely called, as this is done transparently for most |
|
|
|
people. |
|
|
|