Browse Source

Reorder fruit autocomplete example to be less confusing

pull/8152/head
Rapptz 3 years ago
parent
commit
9648986028
  1. 10
      discord/app_commands/commands.py

10
discord/app_commands/commands.py

@ -1808,11 +1808,6 @@ def autocomplete(**parameters: AutocompleteCallback[GroupT, ChoiceT]) -> Callabl
.. code-block:: python3
@app_commands.command()
@app_commands.autocomplete(fruit=fruit_autocomplete)
async def fruits(interaction: discord.Interaction, fruit: str):
await interaction.response.send_message(f'Your favourite fruit seems to be {fruit}')
async def fruit_autocomplete(
interaction: discord.Interaction,
current: str,
@ -1823,6 +1818,11 @@ def autocomplete(**parameters: AutocompleteCallback[GroupT, ChoiceT]) -> Callabl
for fruit in fruits if current.lower() in fruit.lower()
]
@app_commands.command()
@app_commands.autocomplete(fruit=fruit_autocomplete)
async def fruits(interaction: discord.Interaction, fruit: str):
await interaction.response.send_message(f'Your favourite fruit seems to be {fruit}')
Parameters
-----------
\*\*parameters

Loading…
Cancel
Save