Skip to content

Commit 12e267e

Browse files
committed
Fix bug in image_labeling_whole_well (ref #112 #115)
1 parent 51739e7 commit 12e267e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fractal/tasks/image_labeling_whole_well.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,9 @@ def image_labeling_whole_well(
170170
if t["type"] == "scale":
171171
new_t = {"type": "scale"}
172172
new_t["scale"] = [
173-
t[0],
174-
t[1] * coarsening_xy**labeling_level,
175-
t[2] * coarsening_xy**labeling_level,
173+
t["scale"][0],
174+
t["scale"][1] * coarsening_xy**labeling_level,
175+
t["scale"][2] * coarsening_xy**labeling_level,
176176
]
177177
new_transformations.append(new_t)
178178
else:

0 commit comments

Comments
 (0)