diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-06-16 14:14:03 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-06-16 14:14:03 +1000 |
| commit | 1b4e528fdaae39a2ac8bfb1dc5e7fee079790728 (patch) | |
| tree | 1e922a0ad64f753d78638a93f843b9656195bbc3 /backend/data/trimTree.py | |
| parent | 90423f8fc956ebb915d63b834d0fffbc13d6cece (diff) | |
Adjust markdown-escapes in README
Diffstat (limited to 'backend/data/trimTree.py')
| -rwxr-xr-x | backend/data/trimTree.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 = {} |
