From 3dc9f40be756fb953374ea2e2bdf90d5a176ef18 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 27 Aug 2019 04:06:27 -0400 Subject: [PATCH] Add versionadded string to GuildChannel.permissions_synced --- discord/abc.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/discord/abc.py b/discord/abc.py index b150b025d..6f4a4b8bd 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -392,6 +392,8 @@ class GuildChannel: category it belongs to. If there is no category then this is ``False``. + + .. versionadded:: 1.3 """ category = self.guild.get_channel(self.category_id) return category and category._overwrites == self._overwrites