Skip to content

Commit 31782d1

Browse files
Update data_structures/kd_tree/build_kdtree.py
Co-authored-by: Christian Clauss <[email protected]>
1 parent 05975a3 commit 31782d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/kd_tree/build_kdtree.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def build_kdtree(points: list[list[float]], depth: int = 0) -> KDNode | None:
1111
(used to determine axis for splitting).
1212
1313
Returns:
14-
KDNode | None: The root node of the KD-Tree,
14+
The root node of the KD-Tree,
1515
or None if no points are provided.
1616
"""
1717
if not points:

0 commit comments

Comments
 (0)