From e3b5fbd9e6b611cae984df5740551b925390f66a Mon Sep 17 00:00:00 2001 From: Rayzeq Date: Sat, 1 Oct 2022 09:18:26 +0200 Subject: [PATCH] Update Transformer.choices docs to mention limit Co-authored-by: Danny <1695103+Rapptz@users.noreply.github.com> --- discord/app_commands/transformers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/app_commands/transformers.py b/discord/app_commands/transformers.py index bfe2ee8b8..32cfe27a6 100644 --- a/discord/app_commands/transformers.py +++ b/discord/app_commands/transformers.py @@ -286,7 +286,7 @@ class Transformer: @property def choices(self) -> Optional[List[Choice[Union[int, float, str]]]]: - """Optional[List[:class:`~discord.app_commands.Choice`]]: A list of choices that are allowed to this parameter. + """Optional[List[:class:`~discord.app_commands.Choice`]]: A list of up to 25 choices that are allowed to this parameter. Only valid if the :meth:`type` returns :attr:`~discord.AppCommandOptionType.number` :attr:`~discord.AppCommandOptionType.integer`, or :attr:`~discord.AppCommandOptionType.string`.