Skip to content

Commit

Permalink
Merge pull request KhartesViewer#5 from tomhsiao1260/patch-2
Browse files Browse the repository at this point in the history
fix return condition in zarr_only use case
  • Loading branch information
KhartesViewer authored Jun 23, 2024
2 parents c422055 + 5d9743f commit fae9f94
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scroll_to_ome.py
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,8 @@ def main():
err = tifs2zarr(tiffdir, zarrdir, chunk_size, slices=slices, maxgb=maxgb)
if err is not None:
print("error returned:", err)
return 1
return 1
return

if first_new_level is None:
err = create_ome_dir(zarrdir)
Expand Down

0 comments on commit fae9f94

Please sign in to comment.