refactor(commands/utils): add override for skip
This commit is contained in:
parent
a1d63f1bb1
commit
81e30c7e70
@ -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(
|
||||
|
Loading…
x
Reference in New Issue
Block a user