Skip to content

Commit 3959d9e

Browse files
committed
Fix calling of cythoned function
1 parent 0df4714 commit 3959d9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hdbscan/prediction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def _recurse_leaf_dfs(self, current_node):
9494
return [current_node, ]
9595
else:
9696
return sum(
97-
[recurse_leaf_dfs(child) for child in children], [])
97+
[recurse_leaf_dfs(self.cluster_tree, child) for child in children], [])
9898

9999
def __init__(self, data, condensed_tree, min_samples,
100100
tree_type='kdtree', metric='euclidean', **kwargs):

0 commit comments

Comments
 (0)