Skip to content

Commit bab43e7

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 3c09ac1 commit bab43e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/kd_tree/kd_node.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def __init__(
1212
self,
1313
point: list[float],
1414
left: KDNode | None = None,
15-
right: KDNode | None = None,
15+
right: KDNode | None = None,
1616
) -> None:
1717
"""
1818
Initializes a KDNode with the given point and child nodes.

0 commit comments

Comments
 (0)