diff options
| -rw-r--r-- | discord/webhook/async_.py | 2 | ||||
| -rw-r--r-- | discord/webhook/sync.py | 2 |
2 files changed, 2 insertions, 2 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: ... diff --git a/discord/webhook/sync.py b/discord/webhook/sync.py index 7cbbd107..0e2fe6d0 100644 --- a/discord/webhook/sync.py +++ b/discord/webhook/sync.py @@ -734,7 +734,7 @@ class SyncWebhook(BaseWebhook): embed: Embed = MISSING, embeds: List[Embed] = MISSING, allowed_mentions: AllowedMentions = MISSING, - wait: Literal[False], + wait: Literal[False] = ..., ) -> None: ... |