Skip to content

Commit 0426806

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

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
@@ -14,7 +14,7 @@ class KDNode:
1414
def __init__(
1515
self,
1616
point: list[float],
17-
left: KDNode | None = None,
17+
left: KDNode | None = None,
1818
right: KDNode | None = None,
1919
) -> None:
2020
"""

0 commit comments

Comments
 (0)