diff options
| author | Josh <[email protected]> | 2021-05-06 21:51:07 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-05-06 07:51:07 -0400 |
| commit | 3864fb37a0814345913c7ca4fd1978fa5e2ef7e2 (patch) | |
| tree | e5a411b6e35fe3485381880a40223cc574d5e2e9 /discord/webhook | |
| parent | Typehint emoji classes (diff) | |
| download | discord.py-3864fb37a0814345913c7ca4fd1978fa5e2ef7e2.tar.xz discord.py-3864fb37a0814345913c7ca4fd1978fa5e2ef7e2.zip | |
Fix various reference issues in documentation
Co-Authored-By: Riley Shaw <[email protected]>
Diffstat (limited to 'discord/webhook')
| -rw-r--r-- | discord/webhook/async_.py | 2 | ||||
| -rw-r--r-- | discord/webhook/sync.py | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/discord/webhook/async_.py b/discord/webhook/async_.py index 8daa62ca..21e32d00 100644 --- a/discord/webhook/async_.py +++ b/discord/webhook/async_.py @@ -788,8 +788,6 @@ class Webhook(BaseWebhook): received without authentication then this will be ``None``. name: Optional[:class:`str`] The default name of the webhook. - avatar: Optional[:class:`str`] - The default avatar of the webhook. source_guild: Optional[:class:`PartialWebhookGuild`] The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`. diff --git a/discord/webhook/sync.py b/discord/webhook/sync.py index 635633fd..2ad7b753 100644 --- a/discord/webhook/sync.py +++ b/discord/webhook/sync.py @@ -478,8 +478,6 @@ class SyncWebhook(BaseWebhook): received without authentication then this will be ``None``. name: Optional[:class:`str`] The default name of the webhook. - avatar: Optional[:class:`str`] - The default avatar of the webhook. source_guild: Optional[:class:`PartialWebhookGuild`] The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`. |