Skip to content

Commit

Permalink
Fix commit hook.
Browse files Browse the repository at this point in the history
  • Loading branch information
matham committed Apr 10, 2024
1 parent 86b5b71 commit 97b8bd7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cellfinder/core/tools/IO.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ def read_z_stack(path):
if set(axes) != {"x", "y", "z"} or axes[0].lower() != "z":
raise ValueError(
f"Attempted to load {path} but didn't find a zyx or "
f"zxy stack. Found {axes} axes")
f"zxy stack. Found {axes} axes"
)

return imread(path)

Expand Down

0 comments on commit 97b8bd7

Please sign in to comment.