posts: kd-tree-revisited: fix typing

This commit is contained in:
Bruno BELANYI 2025-01-29 12:45:39 +00:00
parent 8ee2a234ec
commit f15aa0567e

View file

@ -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: