From 81e30c7e7039c9bcaaa7383f40448193fc21ca72 Mon Sep 17 00:00:00 2001 From: ErrorNoInternet Date: Mon, 3 Feb 2025 16:40:01 -0500 Subject: [PATCH] refactor(commands/utils): add override for skip --- commands/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/commands/utils.py b/commands/utils.py index fd1df75..ca501bd 100644 --- a/commands/utils.py +++ b/commands/utils.py @@ -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(