mirror of https://github.com/langgenius/dify.git
fix bug
This commit is contained in:
parent
0fe516568a
commit
7303b53af1
|
|
@ -57,7 +57,7 @@ class CodeNode(BaseNode):
|
|||
variables = {}
|
||||
for variable_selector in node_data.variables:
|
||||
variable = variable_selector.variable
|
||||
value = variable_pool.get_any(variable_selector.value_selector)
|
||||
value = self.graph_runtime_state.variable_pool.get_any(variable_selector.value_selector)
|
||||
|
||||
variables[variable] = value
|
||||
# Run code
|
||||
|
|
|
|||
Loading…
Reference in New Issue