Skip to content

Commit 2bd7f99

Browse files
committed
Set filter for is_3D to True after convert 2d to 3d task
1 parent e7a037e commit 2bd7f99

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/fractal_helper_tasks/convert_2D_segmentation_to_3D.py

+7-2
Original file line numberDiff line numberDiff line change
@@ -247,10 +247,15 @@ def convert_2D_segmentation_to_3D(
247247
table_attrs=table_attrs,
248248
)
249249

250-
# FIXME: Set a filter for is_3D = True
251-
252250
logger.info("Finished 2D to 3D conversion")
253251

252+
output_dict = dict(
253+
filters=dict(
254+
types=dict(is_3D=True),
255+
)
256+
)
257+
return output_dict
258+
254259

255260
if __name__ == "__main__":
256261
from fractal_tasks_core.tasks._utils import run_fractal_task

0 commit comments

Comments
 (0)