Skip to content
Snippets Groups Projects
Commit 1c2e394a authored by Cyril Moineau's avatar Cyril Moineau
Browse files

Fix scope variable issue

parent 48371618
No related branches found
No related tags found
No related merge requests found
......@@ -50,8 +50,8 @@ def scheduler_export(scheduler, export_folder_path: str, export_lib: ExportLib =
# For forward file
list_actions += op.forward()
if is_input:
for idx, node in enumerate(node.inputs()):
if node[0] not in graphview.get_nodes():
for idx, node_in in enumerate(node.inputs()):
if node_in[0] not in graphview.get_nodes():
inputs_name.append(op.attributes["in_name"][idx])
inputs_dtype.append(
op.attributes["in_cdtype"][idx]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment