From 76eb12666472ddd4a01459555680e630804994ea Mon Sep 17 00:00:00 2001 From: Gooraeng <101193491+Gooraeng@users.noreply.github.com> Date: Sun, 9 Feb 2025 18:46:28 +0900 Subject: [PATCH] Add 'mention' property in PartialWebhookChannel --- discord/webhook/async_.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/discord/webhook/async_.py b/discord/webhook/async_.py index 2d9856ae3..2faa9f0e0 100644 --- a/discord/webhook/async_.py +++ b/discord/webhook/async_.py @@ -660,6 +660,11 @@ class PartialWebhookChannel(Hashable): def __repr__(self) -> str: return f'' + @property + def mention(self) -> str: + """:class:`str`: The string that allows you to mention the channel that the webhook is following.""" + return f'<#{self.id}>' + class PartialWebhookGuild(Hashable): """Represents a partial guild for webhooks.