Skip to content

Commit

Permalink
fix: incorrect argument to dijkstra3d.parental_field
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Jan 21, 2025
1 parent f92d4c8 commit aeded06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kimimaro/trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def trace(
# pointers from each voxel to its parent. Then we can rapidly
# compute multiple paths by simply hopping pointers using path_from_parents
if not fix_branching:
parents = dijkstra3d.parental_field(PDRF, root, voxel_graph)
parents = dijkstra3d.parental_field(PDRF, root, voxel_graph=voxel_graph)
del PDRF
else:
parents = PDRF
Expand Down

0 comments on commit aeded06

Please sign in to comment.