Browse Source
Fix TextInput's is_persistent() flow
pull/9443/head
yvqc
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
5 additions and
4 deletions
-
discord/ui/select.py
-
discord/ui/text_input.py
|
|
@ -162,10 +162,10 @@ class BaseSelect(Item[V]): |
|
|
|
@custom_id.setter |
|
|
|
def custom_id(self, value: str) -> None: |
|
|
|
if not isinstance(value, str): |
|
|
|
raise TypeError('custom_id must be None or str') |
|
|
|
raise TypeError('custom_id must be a str') |
|
|
|
|
|
|
|
self._underlying.custom_id = value |
|
|
|
self._provided_custom_id = value is not None |
|
|
|
self._provided_custom_id = True |
|
|
|
|
|
|
|
@property |
|
|
|
def placeholder(self) -> Optional[str]: |
|
|
|
|
|
@ -137,10 +137,11 @@ class TextInput(Item[V]): |
|
|
|
@custom_id.setter |
|
|
|
def custom_id(self, value: str) -> None: |
|
|
|
if not isinstance(value, str): |
|
|
|
raise TypeError('custom_id must be None or str') |
|
|
|
raise TypeError('custom_id must be a str') |
|
|
|
|
|
|
|
self._underlying.custom_id = value |
|
|
|
|
|
|
|
self._provided_custom_id = True |
|
|
|
|
|
|
|
@property |
|
|
|
def width(self) -> int: |
|
|
|
return 5 |
|
|
|