Browse Source
Add custom_id string to DynamicItem template regex error
pull/9572/head
Vaskel
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
discord/ui/dynamic.py
|
|
@ -110,7 +110,7 @@ class DynamicItem(Generic[BaseT], Item['View']): |
|
|
|
raise TypeError('item must be dispatchable, e.g. not a URL button') |
|
|
|
|
|
|
|
if not self.template.match(self.custom_id): |
|
|
|
raise ValueError(f'item custom_id must match the template {self.template.pattern!r}') |
|
|
|
raise ValueError(f'item custom_id {self.custom_id!r} must match the template {self.template.pattern!r}') |
|
|
|
|
|
|
|
@property |
|
|
|
def template(self) -> re.Pattern[str]: |
|
|
|