From dfa2f89f2961595c031f45607bacf218fb7989dd Mon Sep 17 00:00:00 2001 From: Dominik Roth Date: Sun, 6 Feb 2022 22:30:44 +0100 Subject: [PATCH] Allow analyzing tags --- caliGraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caliGraph.py b/caliGraph.py index b88c72a..dbbf3b6 100755 --- a/caliGraph.py +++ b/caliGraph.py @@ -1166,7 +1166,7 @@ def cliInterface(): p_read.add_argument('--only-connected', action="store_true") p_show = cmds.add_parser('analyze', description="TODO", aliases=[]) - p_show.add_argument('type', choices=['any', 'book', 'recommender', 'author', 'series']) + p_show.add_argument('type', choices=['any', 'book', 'recommender', 'author', 'series', 'tag']) p_show.add_argument('name', type=str) p_show.add_argument('-d', type=float, default=2.1, help='depth of expansion')