From 6b6cbc44ce66bfb09647188a5bdd3737c351409a Mon Sep 17 00:00:00 2001 From: yvqc <88755906+yvqc@users.noreply.github.com> Date: Sun, 4 Jun 2023 13:50:56 +0200 Subject: [PATCH] Fix TextInput's is_persistent() flow --- discord/ui/select.py | 4 ++-- discord/ui/text_input.py | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/discord/ui/select.py b/discord/ui/select.py index bcd7b466d..222596075 100644 --- a/discord/ui/select.py +++ b/discord/ui/select.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]: diff --git a/discord/ui/text_input.py b/discord/ui/text_input.py index 79ac652b9..95524ef51 100644 --- a/discord/ui/text_input.py +++ b/discord/ui/text_input.py @@ -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