Skip to content

Commit

Permalink
Merge branch 'main' into zarr-pin
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-gould authored Sep 6, 2024
2 parents f7e87d0 + f414d70 commit 822e243
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bioio/writers/ome_tiff_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def save(
Default: None
If None is given, the list will be generated as a 0-indexed list of strings
of the form "Channel:image_index:channel_index"
image_names: Optional[Union[str, List[Union[str, None]]]]
image_name: Optional[Union[str, List[Union[str, None]]]]
List of strings representing the names of the images
Default: None
If None is given, the list will be generated as a 0-indexed list of strings
Expand Down Expand Up @@ -158,7 +158,7 @@ def save(
if len(image_name) != num_images:
raise biob.exceptions.ConflictingArgumentsError(
f"OmeTiffWriter received a list of arrays to use as scenes "
f"but the provided list of image_names is of different "
f"but the provided list of image_name is of different "
f"length. "
f"Number of provided scenes: {num_images}, "
f"Number of provided dimension strings: {len(image_name)}"
Expand All @@ -167,7 +167,7 @@ def save(
if len(physical_pixel_sizes) != num_images:
raise biob.exceptions.ConflictingArgumentsError(
f"OmeTiffWriter received a list of arrays to use as scenes "
f"but the provided list of image_names is of different "
f"but the provided list of image_name is of different "
f"length. "
f"Number of provided scenes: {num_images}, "
f"Number of provided dimension strings: "
Expand Down

0 comments on commit 822e243

Please sign in to comment.