We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7a037e commit 2bd7f99Copy full SHA for 2bd7f99
src/fractal_helper_tasks/convert_2D_segmentation_to_3D.py
@@ -247,10 +247,15 @@ def convert_2D_segmentation_to_3D(
247
table_attrs=table_attrs,
248
)
249
250
- # FIXME: Set a filter for is_3D = True
251
-
252
logger.info("Finished 2D to 3D conversion")
253
+ output_dict = dict(
+ filters=dict(
254
+ types=dict(is_3D=True),
255
+ )
256
257
+ return output_dict
258
+
259
260
if __name__ == "__main__":
261
from fractal_tasks_core.tasks._utils import run_fractal_task
0 commit comments