aboutsummaryrefslogtreecommitdiff
path: root/discord
diff options
context:
space:
mode:
authorRapptz <[email protected]>2021-05-28 08:16:35 -0400
committerRapptz <[email protected]>2021-05-28 08:39:34 -0400
commitf4fe247813245c164334dded99b02e75e6aad86f (patch)
treecec19e91015c2b9c36ddc5bfd6a7d98ba1395506 /discord
parentCheck for guild owner in Role.is_assignable() (diff)
downloaddiscord.py-f4fe247813245c164334dded99b02e75e6aad86f.tar.xz
discord.py-f4fe247813245c164334dded99b02e75e6aad86f.zip
Remove __slots__ from View
Diffstat (limited to 'discord')
-rw-r--r--discord/ui/view.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/discord/ui/view.py b/discord/ui/view.py
index d3a813ed..d82a14c3 100644
--- a/discord/ui/view.py
+++ b/discord/ui/view.py
@@ -87,13 +87,6 @@ class View:
The list of children attached to this view.
"""
- __slots__ = (
- 'timeout',
- 'children',
- 'id',
- '_cancel_callback',
- )
-
__discord_ui_view__: ClassVar[bool] = True
__view_children_items__: ClassVar[List[ItemCallbackType]] = []