Skip to content

Commit 6bf4715

Browse files
committed
fix pylint
1 parent 9cc2f09 commit 6bf4715

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tf2onnx/loader.py

Whitespace-only changes.

tf2onnx/tfonnx.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2535,7 +2535,8 @@ def process_tf_graph(tf_graph, continue_on_error=False, verbose=False, target=No
25352535
non_exists = set(io_to_check) - set(output_shapes.keys())
25362536
if non_exists:
25372537
log.error("\nFailed to convert: inputs/outputs specified do not exist, make sure your passed"
2538-
" in format: input/output_node_name:port_id. Problematical inputs/outputs are: %s \n", non_exists)
2538+
"in format: input/output_node_name:port_id. Problematical inputs/outputs are: %s \n",
2539+
non_exists)
25392540
raise ValueError("Inputs/Outputs Not Found")
25402541

25412542
g = Graph(onnx_nodes, output_shapes, dtypes, target, opset, extra_opset, output_names)

0 commit comments

Comments
 (0)