Skip to content

Commit

Permalink
remove erroneous trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
vreuter committed Jan 29, 2025
1 parent b2ac3a9 commit 108a37d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion looptrace/conversion_to_zarr.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def workflow(n_pos: int, input_folders: Iterable[Path], output_folder: Path) ->
imgs = finalize_image_stack(imgs)

voxel_size: VoxelSize = sample_file_metadata[VOXEL_SIZE_KEY]
chunks = (1, 1, 1, imgs.shape[-2], imgs.shape[-1]), # 1 chunk per xy-plane (z-slice)
chunks = (1, 1, 1, imgs.shape[-2], imgs.shape[-1]) # 1 chunk per xy-plane (z-slice)

# TODO: why is it justified to use just the last sample_file_metadata value (associated with a
# single f in input_folders) in a function call where the concatenation of values from
Expand Down

0 comments on commit 108a37d

Please sign in to comment.