[CHORE]: remove redundant-cast (#24807)

This commit is contained in:
willzhao
2025-09-01 14:05:32 +08:00
committed by GitHub
parent f11131f8b5
commit ffba341258
26 changed files with 54 additions and 90 deletions

View File

@@ -1,7 +1,6 @@
import time
import uuid
from os import getenv
from typing import cast
import pytest
@@ -13,7 +12,6 @@ from core.workflow.graph_engine.entities.graph import Graph
from core.workflow.graph_engine.entities.graph_init_params import GraphInitParams
from core.workflow.graph_engine.entities.graph_runtime_state import GraphRuntimeState
from core.workflow.nodes.code.code_node import CodeNode
from core.workflow.nodes.code.entities import CodeNodeData
from core.workflow.system_variable import SystemVariable
from models.enums import UserFrom
from models.workflow import WorkflowType
@@ -238,8 +236,6 @@ def test_execute_code_output_validator_depth():
"object_validator": {"result": 1, "depth": {"depth": {"depth": 1}}},
}
node._node_data = cast(CodeNodeData, node._node_data)
# validate
node._transform_result(result, node._node_data.outputs)
@@ -334,8 +330,6 @@ def test_execute_code_output_object_list():
]
}
node._node_data = cast(CodeNodeData, node._node_data)
# validate
node._transform_result(result, node._node_data.outputs)