From 2dde5b6aae98e9b229896980ead2deb11c7e19c8 Mon Sep 17 00:00:00 2001 From: wznln <18435084+Xuwznln@users.noreply.github.com> Date: Wed, 7 May 2025 03:02:35 +0800 Subject: [PATCH] fix: aspirate --- unilabos/resources/graphio.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/unilabos/resources/graphio.py b/unilabos/resources/graphio.py index d6f64e46..9621b5de 100644 --- a/unilabos/resources/graphio.py +++ b/unilabos/resources/graphio.py @@ -479,7 +479,8 @@ 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