Browse Source
Allow context menus have ? and ! in their name
pull/7778/head
Puncher
3 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/app_commands/commands.py
|
|
@ -126,7 +126,7 @@ else: |
|
|
|
|
|
|
|
CheckInputParameter = Union['Command[Any, ..., Any]', 'ContextMenu', CommandCallback, ContextMenuCallback] |
|
|
|
VALID_SLASH_COMMAND_NAME = re.compile(r'^[\w-]{1,32}$') |
|
|
|
VALID_CONTEXT_MENU_NAME = re.compile(r'^[\w\s-]{1,32}$') |
|
|
|
VALID_CONTEXT_MENU_NAME = re.compile(r'^[?!\w\s-]{1,32}$') |
|
|
|
CAMEL_CASE_REGEX = re.compile(r'(?<!^)(?=[A-Z])') |
|
|
|
|
|
|
|
|
|
|
|