Browse Source

aliases can be list | tuple

pull/10286/head
Soheab_ 3 days ago
parent
commit
ecb7d5a170
  1. 2
      discord/ext/commands/core.py

2
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]]]

Loading…
Cancel
Save