From 96ddd6ac022a031b8a92aeaff725b1d04957074b Mon Sep 17 00:00:00 2001 From: Ren Tatsumoto Date: Sat, 27 Nov 2021 14:16:24 +0300 Subject: [PATCH] add explanation --- antp/__main__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/antp/__main__.py b/antp/__main__.py index c738b67..d5af54a 100644 --- a/antp/__main__.py +++ b/antp/__main__.py @@ -8,7 +8,9 @@ from antp.importer import import_note_type def main(): try: if len(sys.argv) < 2: - print("No action provided.") + print("No action provided.\n") + print(f"import\tAdd one of the available note types to Anki.") + print(f"export\tSave your note type as a template.") return cmd = sys.argv[1] if cmd == 'export':