Add PartialChannel to list of implementing classes for Messageable

This commit is contained in:
PythonCoderAS 2022-05-01 13:05:07 -04:00 committed by GitHub
parent 0c613148af
commit fedfe5bec2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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`