From ecb7d5a170d287a31522fbfba5644965835124ab Mon Sep 17 00:00:00 2001 From: Soheab_ <33902984+Soheab@users.noreply.github.com> Date: Thu, 28 Aug 2025 18:16:18 +0200 Subject: [PATCH] aliases can be list | tuple --- discord/ext/commands/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index f719e977d..3cc96fea8 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -72,7 +72,7 @@ if TYPE_CHECKING: brief: Optional[str] usage: Optional[str] rest_is_raw: bool - aliases: List[str] + aliases: Union[List[str], Tuple[str, ...]] description: str hidden: bool checks: List[UserCheck[Context[Any]]]