refactor: fix casing and add type hints

This commit is contained in:
2025-02-05 17:23:51 -05:00
parent d63155d0fb
commit 94837f0e77
3 changed files with 8 additions and 8 deletions

View File

@@ -34,7 +34,7 @@ class ArgumentParser:
await utils.reply(message, f"`{e}`")
def range_type(string, min=0, max=100):
def range_type(string: str, min=0, max=100):
try:
value = int(string)
except ValueError: