From 4ea196a32271f4e27deaffd64d7046f81aca2b48 Mon Sep 17 00:00:00 2001 From: s214735 <s214735@dtu.dk> Date: Mon, 30 Dec 2024 10:42:24 +0100 Subject: [PATCH] fix --- qim3d/io/_ome_zarr.py | 3 --- qim3d/processing/_layers.py | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/qim3d/io/_ome_zarr.py b/qim3d/io/_ome_zarr.py index f1ccd04c..983aab01 100644 --- a/qim3d/io/_ome_zarr.py +++ b/qim3d/io/_ome_zarr.py @@ -220,9 +220,6 @@ def export_ome_zarr( qim3d.io.export_ome_zarr("Escargot.zarr", data, chunk_size=100, downsample_rate=2) ``` - - Returns: - None (None): This function writes the OME-Zarr data to the specified directory and does not return any value. """ # Check if directory exists diff --git a/qim3d/processing/_layers.py b/qim3d/processing/_layers.py index a72c2e65..ced17394 100644 --- a/qim3d/processing/_layers.py +++ b/qim3d/processing/_layers.py @@ -88,7 +88,7 @@ def get_lines(segmentations:list|np.ndarray) -> list: so it could be plotted. Used with qim3d.processing.segment_layers Args: - segmentations (list of arrays): List of arrays where each array is 2D segmentation with only 2 classes + segmentations (list of arrays): List of arrays where each array is 2D segmentation with only 2 classes. Returns: segmentation_lines (list): List of 1D numpy arrays -- GitLab