aboutsummaryrefslogtreecommitdiff
path: root/discord/webhook/async_.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2021-04-15 19:36:36 -0400
committerRapptz <[email protected]>2021-04-15 19:36:36 -0400
commit90d59bb06cb291b15ba036f7d8ed1b2e3ed4a5c0 (patch)
tree5ce7d18c9d256be92e8f366f8268f953bb253cbe /discord/webhook/async_.py
parentFix WebhookMessage.edit documentation (diff)
downloaddiscord.py-90d59bb06cb291b15ba036f7d8ed1b2e3ed4a5c0.tar.xz
discord.py-90d59bb06cb291b15ba036f7d8ed1b2e3ed4a5c0.zip
Fix overloads on Webhook.send to not require wait kwarg
Diffstat (limited to 'discord/webhook/async_.py')
-rw-r--r--discord/webhook/async_.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/webhook/async_.py b/discord/webhook/async_.py
index 143dc710..59fe7e2f 100644
--- a/discord/webhook/async_.py
+++ b/discord/webhook/async_.py
@@ -1155,7 +1155,7 @@ class Webhook(BaseWebhook):
embed: Embed = MISSING,
embeds: List[Embed] = MISSING,
allowed_mentions: AllowedMentions = MISSING,
- wait: Literal[False],
+ wait: Literal[False] = ...,
) -> None:
...