From a16b05daabfa201c07c3464d86152d476b6974bb Mon Sep 17 00:00:00 2001 From: Snipy7374 <100313469+Snipy7374@users.noreply.github.com> Date: Fri, 22 Nov 2024 23:40:38 +0100 Subject: [PATCH] update docstrings and slots --- disnake/message.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/disnake/message.py b/disnake/message.py index 88c268dc39..b8ca247ffb 100644 --- a/disnake/message.py +++ b/disnake/message.py @@ -2733,9 +2733,6 @@ class ForwardedMessage: The actual contents of the message. embeds: List[:class:`Embed`] A list of embeds the message has. - channel: Optional[Union[:class:`TextChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]] - The channel that the message was forwarded from. - Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message. This could be ``None`` if the channel is not cached. channel_id: :class:`int` The ID of the channel where the message was forwarded from. attachments: List[:class:`Attachment`] @@ -2759,9 +2756,6 @@ class ForwardedMessage: A list of sticker items given to the message. components: List[:class:`Component`] A list of components in the message. - guild: Optional[:class:`Guild`] - The guild where the message was forwarded from, if applicable. This could - be ``None`` if the guild is not cached. guild_id: Optional[:class:`int`] The guild ID where the message was forwarded from, if applicable. """ @@ -2771,7 +2765,6 @@ class ForwardedMessage: "type", "content", "embeds", - "channel", "channel_id", "attachments", "_timestamp", @@ -2781,7 +2774,6 @@ class ForwardedMessage: "role_mentions", "stickers", "components", - "guild", "guild_id", )