Browse Source
Add PartialChannel to list of implementing classes for Messageable
pull/7983/head
PythonCoderAS
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
discord/abc.py
|
|
@ -1277,12 +1277,13 @@ class GuildChannel: |
|
|
|
class Messageable: |
|
|
|
"""An ABC that details the common operations on a model that can send messages. |
|
|
|
|
|
|
|
The following implement this ABC: |
|
|
|
The following classes implement this ABC: |
|
|
|
|
|
|
|
- :class:`~discord.TextChannel` |
|
|
|
- :class:`~discord.VoiceChannel` |
|
|
|
- :class:`~discord.DMChannel` |
|
|
|
- :class:`~discord.GroupChannel` |
|
|
|
- :class:`~discord.PartialMessageable` |
|
|
|
- :class:`~discord.User` |
|
|
|
- :class:`~discord.Member` |
|
|
|
- :class:`~discord.ext.commands.Context` |
|
|
|