Add back tuple __slots__ for AllChannels

This commit is contained in:
Rapptz 2022-05-01 20:10:56 -04:00
parent 11d4dfd8fa
commit d774b4ac7a

View File

@ -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