From 7ef18d5afd59f6eda84aeedfdba5e36f8b1ce3d8 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Wed, 23 Jul 2025 20:48:12 -0700 Subject: [PATCH] Remove leftover v3 state code in execution.py --- execution.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/execution.py b/execution.py index 49536bda4..c6c853a99 100644 --- a/execution.py +++ b/execution.py @@ -256,11 +256,6 @@ async def _async_map_node_over_list(prompt_id, unique_id, obj, input_data_all, f type_obj = type(obj) type_obj.VALIDATE_CLASS() class_clone = type_obj.PREPARE_CLASS_CLONE(hidden_inputs) - # NOTE: this is a mock of state management; for local, just stores NodeStateLocal on node instance - if hasattr(obj, "local_state"): - if obj.local_state is None: - obj.local_state = io.NodeStateLocal(class_clone.hidden.unique_id) - class_clone.state = obj.local_state # NOTE: this is a mock of resource management; for local, just stores ResourcesLocal on node instance if hasattr(obj, "local_resources"): if obj.local_resources is None: