TreeLib: fix print_tree

This commit is contained in:
Pavel 'LEdoian' Turinsky 2020-03-04 02:50:27 +01:00
parent 6b104d39f9
commit 98bad2099a

View file

@ -5,9 +5,9 @@ def print_tree(node,indent=0):
# FIXME: Tady se spoléháme na to, že nedeklarovaný primární klíč se jmenuje by default 'id', což není úplně správně
print("{}{} (id: {})".format(" "*indent,node, node.id))
if node.first_child:
node.first_child.print_tree(indent=indent+2)
print_tree(node.first_child, indent=indent+2)
if node.succ:
node.succ.print_tree(indent=indent)
print_tree(node.succ, indent=indent)
## Rodinné vztahy
def get_parent(node):