Skip to content
Snippets Groups Projects
Unverified Commit 9b3b0162 authored by Yaman Umuroglu's avatar Yaman Umuroglu Committed by GitHub
Browse files

[Core] remove duplicate line in exception

parent 76f55bb3
No related merge requests found
...@@ -103,7 +103,6 @@ def execute_node(node, context, graph): ...@@ -103,7 +103,6 @@ def execute_node(node, context, graph):
raise Exception( raise Exception(
"""Output shapes disagree after node execution: """Output shapes disagree after node execution:
found %s vs expected %s""" found %s vs expected %s"""
% (str(output_list[list_ind].shape), str(context[outp].shape),)
% (str(output_list[list_ind].shape), str(context[outp].shape)) % (str(output_list[list_ind].shape), str(context[outp].shape))
) )
context[outp] = output_list[list_ind] context[outp] = output_list[list_ind]
......
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