Browse Source

Clarify Webhook.send return value documentation

pull/6845/head
NoName 4 years ago
committed by GitHub
parent
commit
2793fc06d5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      discord/webhook/async_.py
  2. 2
      discord/webhook/sync.py

6
discord/webhook/async_.py

@ -1162,16 +1162,16 @@ class Webhook(BaseWebhook):
Forbidden
The authorization token for the webhook is incorrect.
TypeError
You specified both ``embed`` and ``embeds`` or ``file`` and ``files``
You specified both ``embed`` and ``embeds`` or ``file`` and ``files``.
ValueError
The length of ``embeds`` was invalid
The length of ``embeds`` was invalid.
InvalidArgument
There was no token associated with this webhook.
Returns
---------
Optional[:class:`WebhookMessage`]
The message that was sent.
If ``wait`` is ``True`` then the message that was sent, otherwise ``None``.
"""
if self.token is None:

2
discord/webhook/sync.py

@ -845,7 +845,7 @@ class SyncWebhook(BaseWebhook):
Returns
---------
Optional[:class:`SyncWebhookMessage`]
The message that was sent.
If ``wait`` is ``True`` then the message that was sent, otherwise ``None``.
"""
if self.token is None:

Loading…
Cancel
Save