Skip to content

Commit b27648b

Browse files
committed
make pylint happy
1 parent fef0514 commit b27648b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tf2onnx/onnx_opset/math.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,6 @@ def version_10(cls, ctx, node, **kwargs):
583583
nan_node = ctx.make_node("IsNaN", inputs=node.input, name=utils.make_name(node.name),
584584
shapes=shapes, dtypes=dtypes)
585585
or_node = ctx.make_node("Or", inputs=[inf_node.output[0], nan_node.output[0]], name=utils.make_name(node.name),
586-
shapes=shapes, dtypes=dtypes)
587-
586+
shapes=shapes, dtypes=dtypes)
588587
_ = ctx.make_node("Not", inputs=or_node.output, name=node.name,
589-
shapes=shapes, dtypes=dtypes)
588+
shapes=shapes, dtypes=dtypes)

0 commit comments

Comments
 (0)