From 2c61f5f2a9d69a0a5b4803bf54eb7d85f7d8c03f Mon Sep 17 00:00:00 2001 From: sahasbtw Date: Tue, 18 Aug 2026 20:45:31 +0530 Subject: [PATCH] fix: correct a functional parameter causing a syntax error --- src/zk_graph_view/cli.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/zk_graph_view/cli.py b/src/zk_graph_view/cli.py index bc68f49..943a1b2 100644 --- a/src/zk_graph_view/cli.py +++ b/src/zk_graph_view/cli.py @@ -50,7 +50,10 @@ def main(): choices=["drop", "ghost", "error"], default="drop", help="Handle a link whose endpoint has no note: drop (skip and warn), " - "ghost (render a placeholder node), or error (raise)", + "ghost (render a placeholder node), or error (raise)" + ) + + parser.add_argument( "--show-tags", action="store_true", help="Show tags as nodes in the graph"