diff options
| author | Rapptz <[email protected]> | 2021-03-30 03:51:06 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-03-30 03:51:06 -0400 |
| commit | a30ad6acf26d09edca09c43c24f5228ece3d8846 (patch) | |
| tree | f5dbac63cae65fd259407511fbb81396c1baa4cd /discord/abc.py | |
| parent | Add GuildChannel.move helper method to help with moving channels (diff) | |
| download | discord.py-a30ad6acf26d09edca09c43c24f5228ece3d8846.tar.xz discord.py-a30ad6acf26d09edca09c43c24f5228ece3d8846.zip | |
Ignore moving category channels to another category
Diffstat (limited to 'discord/abc.py')
| -rw-r--r-- | discord/abc.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/discord/abc.py b/discord/abc.py index 64ddaa62..be2c9b21 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -751,6 +751,7 @@ class GuildChannel: category: Optional[:class:`abc.Snowflake`] The category to move this channel under. If ``None`` is given then it moves it out of the category. + This parameter is ignored if moving a category channel. sync_permissions: :class:`bool` Whether to sync the permissions with the category (if given). reason: :class:`str` |