Browse Source
[commands] Update Range examples to match app_commands.Range
pull/9218/head
chrispy
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
discord/ext/commands/converter.py
|
|
@ -1067,6 +1067,8 @@ else: |
|
|
|
- ``Range[int, 10]`` means the minimum is 10 with no maximum. |
|
|
|
- ``Range[int, None, 10]`` means the maximum is 10 with no minimum. |
|
|
|
- ``Range[int, 1, 10]`` means the minimum is 1 and the maximum is 10. |
|
|
|
- ``Range[float, 1.0, 5.0]`` means the minimum is 1.0 and the maximum is 5.0. |
|
|
|
- ``Range[str, 1, 10]`` means the minimum length is 1 and the maximum length is 10. |
|
|
|
|
|
|
|
Inside a :class:`HybridCommand` this functions equivalently to :class:`discord.app_commands.Range`. |
|
|
|
|
|
|
|