Skip to content

Commit 96ff4fb

Browse files
committed
fix pylint
1 parent 97cd275 commit 96ff4fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tf2onnx/onnx_opset/tensor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -866,4 +866,4 @@ def version_4(cls, ctx, node, **kwargs):
866866
# NHWC TO CNHW, so onnx op will work on "N" which is the same as tensorflow
867867
trans1 = ctx.make_node("Transpose", pad_op.output, {"perm": [3, 0, 1, 2]})
868868
reorganize_node = ctx.make_node(node.type, trans1.output, attr={"blocksize": blocksize[0]})
869-
ctx.make_node("Transpose", reorganize_node.output, {"perm": [1, 2, 3, 0]}, name=node.name, outputs=node.output)
869+
ctx.make_node("Transpose", reorganize_node.output, {"perm": [1, 2, 3, 0]}, name=node.name, outputs=node.output)

0 commit comments

Comments
 (0)