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

Loading…
Cancel
Save