Browse Source

Add back tuple __slots__ for AllChannels

pull/7985/head
Rapptz 3 years ago
parent
commit
d774b4ac7a
  1. 2
      discord/app_commands/models.py

2
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

Loading…
Cancel
Save