From 43e38654e9e20f31f13d01d71525869b732c1282 Mon Sep 17 00:00:00 2001 From: Willy Date: Sun, 19 Jan 2020 15:42:27 -0500 Subject: [PATCH] Added docs for overwrites kwarg for CategoryChannel.edit --- discord/channel.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/discord/channel.py b/discord/channel.py index 2eb7b88b3..385f91c24 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -772,6 +772,11 @@ class CategoryChannel(discord.abc.GuildChannel, Hashable): To mark the category as NSFW or not. reason: Optional[:class:`str`] The reason for editing this category. Shows up on the audit log. + overwrites: :class:`dict` + A :class:`dict` of target (either a role or a member) to + :class:`PermissionOverwrite` to apply to the channel. + + .. versionadded:: 1.3.0 Raises ------