From 2ff2c37afb62de711d67a7915cb631d94b19b370 Mon Sep 17 00:00:00 2001 From: Andy Sweet Date: Mon, 20 May 2024 12:57:57 -0700 Subject: [PATCH] Fix indent --- src/napari_cryoet_data_portal/_reader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/napari_cryoet_data_portal/_reader.py b/src/napari_cryoet_data_portal/_reader.py index 99f1dac..b9d542d 100644 --- a/src/napari_cryoet_data_portal/_reader.py +++ b/src/napari_cryoet_data_portal/_reader.py @@ -297,7 +297,7 @@ def read_annotation_files(annotation: Annotation, *, tomogram: Optional[Tomogram if (f.shape_type in ("Point", "OrientedPoint")) and (f.format == "ndjson"): yield _read_points_annotation_file(f, anno=annotation, tomogram=tomogram) elif (f.shape_type == "SegmentationMask") and (f.format == "zarr"): - yield _read_labels_annotation_file(f, anno=annotation, tomogram=tomogram) + yield _read_labels_annotation_file(f, anno=annotation, tomogram=tomogram) else: logger.warn("Found unsupported annotation file: %s, %s. Skipping.", f.shape_type, f.format)