Skip to content

Commit 1e35cff

Browse files
committed
Addressed PR review. Minor fix for aliasing in reshape parser
1 parent 6fc5659 commit 1e35cff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Deeploy/Targets/Generic/Parsers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,7 @@ def parseNodeCtxt(self,
10901090
output_node.add_aliases(aliases_to_add = new_output_node_aliases)
10911091

10921092
# Add output node as alias to its aliases (alias relationship is symmetric)
1093-
for alias in input_node.get_aliases_of():
1093+
for alias in output_node.get_aliases_of():
10941094
alias_node = ctxt.lookup(alias)
10951095
alias_node.add_aliases(aliases_to_add = [
10961096
output_node.name,

0 commit comments

Comments
 (0)