mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-06-06 11:57:17 +00:00
Raise if custom_id is not a str
This commit is contained in:
parent
b7b992375d
commit
3215cb65e2
@ -105,6 +105,9 @@ class Button(Item[V]):
|
|||||||
if url is None and custom_id is None:
|
if url is None and custom_id is None:
|
||||||
custom_id = os.urandom(16).hex()
|
custom_id = os.urandom(16).hex()
|
||||||
|
|
||||||
|
if custom_id is not None and not isinstance(custom_id, str):
|
||||||
|
raise TypeError(f'expected custom_id to be str not {custom_id.__class__!r}')
|
||||||
|
|
||||||
if url is not None:
|
if url is not None:
|
||||||
style = ButtonStyle.link
|
style = ButtonStyle.link
|
||||||
|
|
||||||
|
@ -111,6 +111,9 @@ class Select(Item[V]):
|
|||||||
self._selected_values: List[str] = []
|
self._selected_values: List[str] = []
|
||||||
self._provided_custom_id = custom_id is not MISSING
|
self._provided_custom_id = custom_id is not MISSING
|
||||||
custom_id = os.urandom(16).hex() if custom_id is MISSING else custom_id
|
custom_id = os.urandom(16).hex() if custom_id is MISSING else custom_id
|
||||||
|
if not isinstance(custom_id, str):
|
||||||
|
raise TypeError(f'expected custom_id to be str not {custom_id.__class__!r}')
|
||||||
|
|
||||||
options = [] if options is MISSING else options
|
options = [] if options is MISSING else options
|
||||||
self._underlying = SelectMenu._raw_construct(
|
self._underlying = SelectMenu._raw_construct(
|
||||||
custom_id=custom_id,
|
custom_id=custom_id,
|
||||||
|
@ -104,6 +104,9 @@ class TextInput(Item[V]):
|
|||||||
self._value: Optional[str] = default
|
self._value: Optional[str] = default
|
||||||
self._provided_custom_id = custom_id is not MISSING
|
self._provided_custom_id = custom_id is not MISSING
|
||||||
custom_id = os.urandom(16).hex() if custom_id is MISSING else custom_id
|
custom_id = os.urandom(16).hex() if custom_id is MISSING else custom_id
|
||||||
|
if not isinstance(custom_id, str):
|
||||||
|
raise TypeError(f'expected custom_id to be str not {custom_id.__class__!r}')
|
||||||
|
|
||||||
self._underlying = TextInputComponent._raw_construct(
|
self._underlying = TextInputComponent._raw_construct(
|
||||||
type=ComponentType.text_input,
|
type=ComponentType.text_input,
|
||||||
label=label,
|
label=label,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user