mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-05 09:26:10 +00:00
Raise if custom_id is not a str
This commit is contained in:
@ -105,6 +105,9 @@ class Button(Item[V]):
|
||||
if url is None and custom_id is None:
|
||||
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:
|
||||
style = ButtonStyle.link
|
||||
|
||||
|
Reference in New Issue
Block a user