posts: kd-tree-revisited: fix typing
This commit is contained in:
parent
8ee2a234ec
commit
f15aa0567e
|
@ -92,7 +92,7 @@ class KdSplitNode[T]:
|
|||
def closest(
|
||||
self,
|
||||
point: Point,
|
||||
out: list[ClosestPoint[T]],
|
||||
out: MaxHeap[ClosestPoint[T]],
|
||||
n: int,
|
||||
projection: Point,
|
||||
) -> None:
|
||||
|
|
Loading…
Reference in a new issue