From 2793fc06d5cb8fdbe3e19ba0c88e681d33902866 Mon Sep 17 00:00:00 2001 From: NoName Date: Mon, 3 May 2021 07:21:11 +0900 Subject: [PATCH] Clarify Webhook.send return value documentation --- discord/webhook/async_.py | 6 +++--- discord/webhook/sync.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/discord/webhook/async_.py b/discord/webhook/async_.py index 2a42b52b5..99a9cc481 100644 --- a/discord/webhook/async_.py +++ b/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: diff --git a/discord/webhook/sync.py b/discord/webhook/sync.py index 1fd05f3ee..269782996 100644 --- a/discord/webhook/sync.py +++ b/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: