From 1b4e528fdaae39a2ac8bfb1dc5e7fee079790728 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Thu, 16 Jun 2022 14:14:03 +1000 Subject: Adjust markdown-escapes in README --- backend/data/trimTree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backend/data/trimTree.py') diff --git a/backend/data/trimTree.py b/backend/data/trimTree.py index f580e7e..2642ca0 100755 --- a/backend/data/trimTree.py +++ b/backend/data/trimTree.py @@ -50,7 +50,7 @@ print(f"Total of {len(nodesToKeep)} nodes to keep") # Find root node query = "SELECT name FROM nodes LEFT JOIN edges ON nodes.name = edges.child WHERE edges.node IS NULL LIMIT 1" (rootName,) = dbCur.execute(query).fetchone() -print(f"Found root node {rootName}") +print(f"Found root node \"{rootName\"}") # Traverse tree, looking for trimmable nodes print("Looking for trimmable nodes") nodeToTipsChg = {} -- cgit v1.2.3