From fedfe5bec253139f37743afa3ef70119a720d287 Mon Sep 17 00:00:00 2001 From: PythonCoderAS Date: Sun, 1 May 2022 13:05:07 -0400 Subject: [PATCH] Add PartialChannel to list of implementing classes for Messageable --- discord/abc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/discord/abc.py b/discord/abc.py index e2da0f849..d303b0110 100644 --- a/discord/abc.py +++ b/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`