Skip to content

Commit

Permalink
Fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-sweet committed May 20, 2024
1 parent 753a82e commit 2ff2c37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/napari_cryoet_data_portal/_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 2ff2c37

Please sign in to comment.