[commands] Add support for Greedy for hybrid commands

This commit is contained in:
Rapptz
2022-04-12 17:31:07 -04:00
parent 1004cf2059
commit 393fdde037
2 changed files with 32 additions and 1 deletions

View File

@ -1021,6 +1021,12 @@ class Greedy(List[T]):
``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\.
For more information, check :ref:`ext_commands_special_converters`.
.. note::
For interaction based contexts the conversion error is propagated
rather than swallowed due to the difference in user experience with
application commands.
"""
__slots__ = ('converter',)