Skip to content

Commit f30205e

Browse files
committed
fix pylint
1 parent a78dc8f commit f30205e

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
@@ -776,7 +776,7 @@ def version_10(cls, ctx, node, **kwargs):
776776
unqueeze_at.append(bit)
777777
begin_mask |= 1 << bit
778778
end_mask |= 1 << bit
779-
input_x = ctx.make_node("Unsqueeze", [input_x.output[0]], {"axes":unqueeze_at})
779+
input_x = ctx.make_node("Unsqueeze", [input_x.output[0]], {"axes": unqueeze_at})
780780

781781
param_shape = ctx.get_shape(node.input[1]) or \
782782
ctx.get_shape(node.input[2]) or \

0 commit comments

Comments
 (0)