From 2da721d53c82b7735259af4b3e3576148d451b2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Murta?= Date: Sun, 29 Jan 2023 23:41:42 +0000 Subject: [PATCH] [Interactive] Adds skip command --- pfbudget/__main__.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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