Browse Source

chore: Update Container.is_dispatchable

pull/10166/head
DA344 3 months ago
committed by GitHub
parent
commit
0f7d72bc0b
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      discord/ui/container.py

2
discord/ui/container.py

@ -136,7 +136,7 @@ class Container(Item[V]):
return children
def is_dispatchable(self) -> bool:
return True
return bool(self.__dispatchable)
def __init_subclass__(cls) -> None:
super().__init_subclass__()

Loading…
Cancel
Save