| @@ -1,6 +1,3 @@ | |||
| from collections.abc import Mapping, Sequence | |||
| from typing import Any | |||
| from core.workflow.entities.node_entities import NodeRunResult | |||
| from core.workflow.nodes.base import BaseNode | |||
| from core.workflow.nodes.enums import NodeType | |||
| @@ -36,16 +33,3 @@ class VariableAggregatorNode(BaseNode[VariableAssignerNodeData]): | |||
| break | |||
| return NodeRunResult(status=WorkflowNodeExecutionStatus.SUCCEEDED, outputs=outputs, inputs=inputs) | |||
| @classmethod | |||
| def _extract_variable_selector_to_variable_mapping( | |||
| cls, *, graph_config: Mapping[str, Any], node_id: str, node_data: VariableAssignerNodeData | |||
| ) -> Mapping[str, Sequence[str]]: | |||
| """ | |||
| Extract variable selector to variable mapping | |||
| :param graph_config: graph config | |||
| :param node_id: node id | |||
| :param node_data: node data | |||
| :return: | |||
| """ | |||
| return {} | |||