From 2e37e47e38854f186637875ee5e0b1e3a8f2ab68 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sun, 28 Aug 2022 02:01:29 -0400 Subject: [PATCH] Fix autocomplete documentation to mention it only passes strings --- discord/app_commands/commands.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/discord/app_commands/commands.py b/discord/app_commands/commands.py index c4f91637c..4027fde44 100644 --- a/discord/app_commands/commands.py +++ b/discord/app_commands/commands.py @@ -127,8 +127,8 @@ if TYPE_CHECKING: ] AutocompleteCallback = Union[ - Callable[[GroupT, 'Interaction', ChoiceT], Coro[List[Choice[ChoiceT]]]], - Callable[['Interaction', ChoiceT], Coro[List[Choice[ChoiceT]]]], + Callable[[GroupT, 'Interaction', str], Coro[List[Choice[ChoiceT]]]], + Callable[['Interaction', str], Coro[List[Choice[ChoiceT]]]], ] else: CommandCallback = Callable[..., Coro[T]] @@ -1041,8 +1041,7 @@ class Command(Generic[GroupT, P, T]): """A decorator that registers a coroutine as an autocomplete prompt for a parameter. The coroutine callback must have 2 parameters, the :class:`~discord.Interaction`, - and the current value by the user (usually either a :class:`str`, :class:`int`, or :class:`float`, - depending on the type of the parameter being marked as autocomplete). + and the current value by the user (the string currently being typed by the user). To get the values from other parameters that may be filled in, accessing :attr:`.Interaction.namespace` will give a :class:`Namespace` object with those