From 8ef75590ffd4f1e5cf752f7fd59663fd6aac9c67 Mon Sep 17 00:00:00 2001 From: Constantin Pape Date: Mon, 2 Dec 2024 22:18:06 +0100 Subject: [PATCH] Fix type annotation --- synaptic_reconstruction/distance_measurements.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synaptic_reconstruction/distance_measurements.py b/synaptic_reconstruction/distance_measurements.py index 4c25691..4cf3181 100644 --- a/synaptic_reconstruction/distance_measurements.py +++ b/synaptic_reconstruction/distance_measurements.py @@ -444,7 +444,7 @@ def keep_direct_distances( seg_ids: np.ndarray, line_dilation: int = 0, scale: Optional[Tuple[int, int, int]] = None, -) -> List[List[int, int]]: +) -> List[List[int]]: """Filter out all distances that are not direct; distances that are occluded by another segmented object. Args: