From 3c6daff4739eb253938485801414789f36d3b847 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Thu, 17 Mar 2022 07:37:33 -0400 Subject: [PATCH] Change default ellipsis descriptions to use U+2026 --- discord/app_commands/commands.py | 12 ++++++------ discord/app_commands/tree.py | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord/app_commands/commands.py b/discord/app_commands/commands.py index a42a57b18..311e2996d 100644 --- a/discord/app_commands/commands.py +++ b/discord/app_commands/commands.py @@ -129,7 +129,7 @@ CAMEL_CASE_REGEX = re.compile(r'(? str: return _wrapper.fill(' '.join(input.strip().split())) @@ -201,7 +201,7 @@ def _populate_descriptions(params: Dict[str, CommandParameter], descriptions: Di for name, param in params.items(): description = descriptions.pop(name, MISSING) if description is MISSING: - param.description = '...' + param.description = '…' continue if not isinstance(description, str): @@ -291,7 +291,7 @@ def _extract_parameters_from_callback(func: Callable[..., Any], globalns: Dict[s except AttributeError: for param in values: if param.description is MISSING: - param.description = '...' + param.description = '…' else: _populate_descriptions(result, descriptions) @@ -732,7 +732,7 @@ class Group: if description is MISSING: if cls.__doc__ is None: - cls.__discord_app_commands_group_description__ = '...' + cls.__discord_app_commands_group_description__ = '…' else: cls.__discord_app_commands_group_description__ = _shorten(cls.__doc__) else: @@ -955,7 +955,7 @@ class Group: if description is MISSING: if func.__doc__ is None: - desc = '...' + desc = '…' else: desc = _shorten(func.__doc__) else: @@ -997,7 +997,7 @@ def command( if description is MISSING: if func.__doc__ is None: - desc = '...' + desc = '…' else: desc = _shorten(func.__doc__) else: diff --git a/discord/app_commands/tree.py b/discord/app_commands/tree.py index 2f1baa4ff..6065fed57 100644 --- a/discord/app_commands/tree.py +++ b/discord/app_commands/tree.py @@ -760,7 +760,7 @@ class CommandTree(Generic[ClientT]): if description is MISSING: if func.__doc__ is None: - desc = '...' + desc = '…' else: desc = _shorten(func.__doc__) else: