Skip to content

Commit

Permalink
fixed typo on nx import
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanacelii committed Jan 16, 2024
1 parent 9dd44f4 commit 541ff32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesh_tools/skeleton_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3592,7 +3592,7 @@ def decompose_skeleton_to_branches(current_skeleton,
if len(c_comp) >= 2:
#add the subgraph to the branches
branch_subgraph = el_sk_graph.subgraph(list(c_comp))
branch_subgraph = nx. nx.minimum_spanning_tree(branch_subgraph)
branch_subgraph = nx.minimum_spanning_tree(branch_subgraph)
#and constant loop that check for cycle in this complexand if there is one then delete a random edge from the cycle

"""
Expand Down

0 comments on commit 541ff32

Please sign in to comment.