From 1461e61648d7193b6f667ccf9c699cdaab455df8 Mon Sep 17 00:00:00 2001 From: wznln <18435084+Xuwznln@users.noreply.github.com> Date: Wed, 14 May 2025 22:37:42 +0800 Subject: [PATCH] remove default behavior for visualization --- unilabos/resources/graphio.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/unilabos/resources/graphio.py b/unilabos/resources/graphio.py index 9621b5de..2dff32a2 100644 --- a/unilabos/resources/graphio.py +++ b/unilabos/resources/graphio.py @@ -479,8 +479,6 @@ def initialize_resources(resources_config) -> list[dict]: from unilabos.registry.registry import lab_registry resources = [] for resource_config in resources_config: - if resource_config["parent"] == "tip_rack" or resource_config["parent"] == "plate_well": - continue resources.extend(initialize_resource(resource_config, lab_registry)) return resources