Add support for applied_tags in Webhook.send overloaded methods

This commit is contained in:
Vioshim
2024-04-18 02:38:10 -05:00
committed by GitHub
parent f1a19f2f21
commit 5497674ae2
2 changed files with 13 additions and 1 deletions

View File

@ -1596,6 +1596,7 @@ class Webhook(BaseWebhook):
wait: Literal[True],
suppress_embeds: bool = MISSING,
silent: bool = MISSING,
applied_tags: List[ForumTag] = MISSING,
) -> WebhookMessage:
...
@ -1619,6 +1620,7 @@ class Webhook(BaseWebhook):
wait: Literal[False] = ...,
suppress_embeds: bool = MISSING,
silent: bool = MISSING,
applied_tags: List[ForumTag] = MISSING,
) -> None:
...