Update app.py
Browse files
app.py
CHANGED
@@ -95,7 +95,7 @@ def create_binary_tree_edges(root):
|
|
95 |
new_prev += [child for child in node.children if (len(child.children) > 0)]
|
96 |
prev = new_prev
|
97 |
|
98 |
-
edges
|
99 |
|
100 |
def plot_tree_using_igraph():
|
101 |
# Define the edges in a tree structure
|
|
|
95 |
new_prev += [child for child in node.children if (len(child.children) > 0)]
|
96 |
prev = new_prev
|
97 |
|
98 |
+
return edges
|
99 |
|
100 |
def plot_tree_using_igraph():
|
101 |
# Define the edges in a tree structure
|