From e29c10d18680882d2c8c155a6d3a6a58f98d169c Mon Sep 17 00:00:00 2001 From: DA-344 <108473820+DA-344@users.noreply.github.com> Date: Tue, 6 May 2025 16:46:50 +0200 Subject: [PATCH] fix: Webhook.send overloads missing ephemeral kwarg --- discord/webhook/async_.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/discord/webhook/async_.py b/discord/webhook/async_.py index df6055d9c..104da78ca 100644 --- a/discord/webhook/async_.py +++ b/discord/webhook/async_.py @@ -1611,6 +1611,7 @@ class Webhook(BaseWebhook): *, username: str = MISSING, avatar_url: Any = MISSING, + ephemeral: bool = MISSING, file: File = MISSING, files: Sequence[File] = MISSING, allowed_mentions: AllowedMentions = MISSING, @@ -1630,6 +1631,7 @@ class Webhook(BaseWebhook): *, username: str = MISSING, avatar_url: Any = MISSING, + ephemeral: bool = MISSING, file: File = MISSING, files: Sequence[File] = MISSING, allowed_mentions: AllowedMentions = MISSING,