From c6decedf7b79646932b51c69214c2b4a982e51e0 Mon Sep 17 00:00:00 2001 From: Jakub Kuczys Date: Mon, 3 Oct 2022 13:27:09 +0200 Subject: [PATCH] Add ForumChannel to Webhook's documentation --- discord/webhook/async_.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/discord/webhook/async_.py b/discord/webhook/async_.py index 0ae5b9530..7039b4e49 100644 --- a/discord/webhook/async_.py +++ b/discord/webhook/async_.py @@ -68,7 +68,7 @@ if TYPE_CHECKING: from ..http import Response from ..guild import Guild from ..emoji import Emoji - from ..channel import VoiceChannel + from ..channel import ForumChannel, VoiceChannel from ..abc import Snowflake from ..ui.view import View import datetime @@ -1006,8 +1006,8 @@ class BaseWebhook(Hashable): return self._state and self._state._get_guild(self.guild_id) @property - def channel(self) -> Optional[Union[VoiceChannel, TextChannel]]: - """Optional[Union[:class:`VoiceChannel`, :class:`TextChannel`]]: The channel this webhook belongs to. + def channel(self) -> Optional[Union[ForumChannel, VoiceChannel, TextChannel]]: + """Optional[Union[:class:`ForumChannel`, :class:`VoiceChannel`, :class:`TextChannel`]]: The channel this webhook belongs to. If this is a partial webhook, then this will always return ``None``. """ @@ -1059,7 +1059,8 @@ class Webhook(BaseWebhook): There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks`, - :meth:`.TextChannel.webhooks` and :meth:`.VoiceChannel.webhooks`. + :meth:`.TextChannel.webhooks`, :meth:`.VoiceChannel.webhooks` + and :meth:`.ForumChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session.