refactor: clean up range_type

This commit is contained in:
2024-12-30 20:33:44 -05:00
parent 1a71d83ebd
commit e032d04157
3 changed files with 8 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
import functools
import re
import arguments
import commands
import utils
@@ -14,9 +14,7 @@ async def clear(message):
)
parser.add_argument(
"count",
type=int,
choices=range(1, 1001),
metavar="[1-1000]",
type=functools.partial(arguments.range_type, min=1, max=1000),
help="amount of messages to delete",
)
parser.add_argument(