diff --git a/discord/webhook/async_.py b/discord/webhook/async_.py index 143dc7100..59fe7e2fe 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 7cbbd1078..0e2fe6d01 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: ...