From d774b4ac7afe9b1bc09a29056745b0aa83aca0c4 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sun, 1 May 2022 20:10:56 -0400 Subject: [PATCH] Add back tuple __slots__ for AllChannels --- discord/app_commands/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/app_commands/models.py b/discord/app_commands/models.py index 26dc58688..ba7e44095 100644 --- a/discord/app_commands/models.py +++ b/discord/app_commands/models.py @@ -82,7 +82,7 @@ class AllChannels: The guild the application command permission is for. """ - __slots__ = 'guild' + __slots__ = ('guild',) def __init__(self, guild: Guild): self.guild = guild