Browse Source

Fix a couple docstrings

pull/728/merge
Steve C 8 years ago
committed by Rapptz
parent
commit
7ee5dc22fb
  1. 6
      discord/webhook.py

6
discord/webhook.py

@ -361,7 +361,7 @@ class Webhook:
@classmethod
def partial(cls, id, token, *, adapter):
"""Creates an partial :class:`Webhook`.
"""Creates a partial :class:`Webhook`.
A partial webhook is just a webhook object with an ID and a token.
@ -419,7 +419,7 @@ class Webhook:
def guild(self):
"""Optional[:class:`Guild`]: The guild this webhook belongs to.
If this is an partial webhook, then this will always return ``None``.
If this is a partial webhook, then this will always return ``None``.
"""
return self._state and self._state.get_guild(self.guild_id)
@ -427,7 +427,7 @@ class Webhook:
def channel(self):
"""Optional[:class:`TextChannel`]: The text channel this webhook belongs to.
If this is an partial webhook, then this will always return ``None``.
If this is a partial webhook, then this will always return ``None``.
"""
guild = self.guild
return guild and guild.get_channel(self.channel_id)

Loading…
Cancel
Save