Browse Source
chore: Update Container.is_dispatchable
pull/10166/head
DA344
3 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
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__() |
|
|
|