Browse Source

fix: Webhook.send overloads missing ephemeral kwarg

pull/10166/head
DA-344 3 weeks ago
parent
commit
e29c10d186
  1. 2
      discord/webhook/async_.py

2
discord/webhook/async_.py

@ -1611,6 +1611,7 @@ class Webhook(BaseWebhook):
*, *,
username: str = MISSING, username: str = MISSING,
avatar_url: Any = MISSING, avatar_url: Any = MISSING,
ephemeral: bool = MISSING,
file: File = MISSING, file: File = MISSING,
files: Sequence[File] = MISSING, files: Sequence[File] = MISSING,
allowed_mentions: AllowedMentions = MISSING, allowed_mentions: AllowedMentions = MISSING,
@ -1630,6 +1631,7 @@ class Webhook(BaseWebhook):
*, *,
username: str = MISSING, username: str = MISSING,
avatar_url: Any = MISSING, avatar_url: Any = MISSING,
ephemeral: bool = MISSING,
file: File = MISSING, file: File = MISSING,
files: Sequence[File] = MISSING, files: Sequence[File] = MISSING,
allowed_mentions: AllowedMentions = MISSING, allowed_mentions: AllowedMentions = MISSING,

Loading…
Cancel
Save