refactor(commands/utils): add override for skip

This commit is contained in:
2025-02-03 16:40:01 -05:00
parent a1d63f1bb1
commit 81e30c7e70

View File

@@ -32,6 +32,8 @@ class Command(Enum):
def match_token(token: str) -> list[Command]:
if token.lower() == "r":
return [Command.RELOAD]
elif token.lower() == "s":
return [Command.SKIP]
if exact_match := list(
filter(