Browse Source

Add ForumChannel to Webhook's documentation

pull/8975/head
Jakub Kuczys 3 years ago
committed by GitHub
parent
commit
c6decedf7b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      discord/webhook/async_.py

9
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.

Loading…
Cancel
Save