Skip to content

Commit 45c7063

Browse files
fixed make edge_data
1 parent c5e5dbf commit 45c7063

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/convert_to_python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def make_edge_data(data: dict) -> list[dict]:
102102

103103
# we need the namespace since we call make_blocks
104104
namespace = make_global_variables(data["globalVariables"])
105-
blocks, _ = make_blocks(data["nodes"], data["edges"], eval_namespace=namespace)
105+
blocks, _ = make_blocks(data["nodes"], eval_namespace=namespace)
106106

107107
# Process each node and its sorted incoming edges to create connections
108108
block_to_input_index = {b: 0 for b in blocks}

0 commit comments

Comments
 (0)