From a45d841769f82a100819674c40ef0b7f03701cbf Mon Sep 17 00:00:00 2001 From: Xuwznln <18435084+Xuwznln@users.noreply.github.com> Date: Thu, 23 Oct 2025 11:37:26 +0800 Subject: [PATCH] remove extra key --- unilabos/resources/graphio.py | 1 + 1 file changed, 1 insertion(+) diff --git a/unilabos/resources/graphio.py b/unilabos/resources/graphio.py index 70e569ba..b6cec380 100644 --- a/unilabos/resources/graphio.py +++ b/unilabos/resources/graphio.py @@ -535,6 +535,7 @@ def resource_ulab_to_plr(resource: dict, plr_model=False) -> "ResourcePLR": def resource_ulab_to_plr_inner(resource: dict): all_states[resource["name"]] = resource["data"] + extra = resource.pop("extra", {}) d = { "name": resource["name"], "type": resource["type"],