From 9e31b46e8248dd040638ed8ce2628e3a00603340 Mon Sep 17 00:00:00 2001 From: quenousimporte Date: Thu, 14 Sep 2023 09:52:09 +0200 Subject: [PATCH] python tool: list if user answers no --- cli/python/app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/python/app.py b/cli/python/app.py index a65b65a..43f4e12 100644 --- a/cli/python/app.py +++ b/cli/python/app.py @@ -89,5 +89,7 @@ while not (command == "quit" or command == "exit" or command == "q"): } data.insert(0, note) editnote(note) + else: + listnotes() command = input("> ")