diff --git a/pfbudget/__main__.py b/pfbudget/__main__.py index 2d42e32..e0fbce8 100644 --- a/pfbudget/__main__.py +++ b/pfbudget/__main__.py @@ -24,7 +24,11 @@ def interactive(manager: Manager): quit = False next = True while next: - match (input("(/split/tag/note/quit): ")): + match (input("(/split/tag/note/skip/quit): ")): + case "skip": + next = False + continue + case "quit" | "exit": next = False quit = True