Skip to content

Commit

Permalink
chore: Simplify the unchanged overrided method in VariableAggregatorN…
Browse files Browse the repository at this point in the history
…ode (#14175)
  • Loading branch information
bowenliang123 authored Feb 23, 2025
1 parent 5669a18 commit f552667
Showing 1 changed file with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -36,16 +33,3 @@ def _run(self) -> NodeRunResult:
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 {}

0 comments on commit f552667

Please sign in to comment.