Skip to content

Commit b2abce6

Browse files
committed
Ensure all table values are floats
1 parent b784936 commit b2abce6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fractal_tasks_core/tasks/projection.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ def projection(
119119

120120
roi_list = []
121121
for roi in table.rois:
122-
roi.z = 0
123-
roi.z_length = 1
122+
roi.z = 0.0
123+
roi.z_length = 1.0
124124
roi_list.append(roi)
125125

126126
mip_table.set_rois(roi_list, overwrite=True)

0 commit comments

Comments
 (0)