From b7785d29cbd43b0d21c823b31fd5ae5a0dd2e94a Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sat, 15 Jul 2023 19:53:18 -0400 Subject: [PATCH] Add CategoryChannel.forums shortcut property --- discord/channel.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/discord/channel.py b/discord/channel.py index 208d85eb0..02f4d6b3f 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -1971,6 +1971,16 @@ class CategoryChannel(discord.abc.GuildChannel, Hashable): ret.sort(key=lambda c: (c.position, c.id)) return ret + @property + def forums(self) -> List[ForumChannel]: + """List[:class:`ForumChannel`]: Returns the forum channels that are under this category. + + .. versionadded:: 2.4 + """ + r = [c for c in self.guild.channels if c.category_id == self.id and isinstance(c, ForumChannel)] + r.sort(key=lambda c: (c.position, c.id)) + return r + async def create_text_channel(self, name: str, **options: Any) -> TextChannel: """|coro|