refactor: functools.partial -> lamdba

This commit is contained in:
2024-12-30 20:51:02 -05:00
parent e032d04157
commit 32817f735e
2 changed files with 3 additions and 6 deletions

View File

@@ -1,4 +1,3 @@
import functools
import re
import arguments
@@ -14,7 +13,7 @@ async def clear(message):
)
parser.add_argument(
"count",
type=functools.partial(arguments.range_type, min=1, max=1000),
type=lambda c: arguments.range_type(c, min=1, max=1000),
help="amount of messages to delete",
)
parser.add_argument(