Skip to content

Commit

Permalink
pylint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Valery Chernov committed Jan 29, 2023
1 parent bf18552 commit 2ecdfb4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/python/frontend/onnx/test_forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -7787,8 +7787,10 @@ def verify_sequence_ops(tensor_shape, num_tensors, axis=0, position=0, new_axis=
output_shape[axis] = num_tensors + 1
else:
output_shape[axis] = (num_tensors + 1) * output_shape[axis]
graph_outputs = [helper.make_tensor_value_info("output", TensorProto.FLOAT, output_shape),
helper.make_tensor_value_info("output_2", TensorProto.INT, ())]
graph_outputs = [
helper.make_tensor_value_info("output", TensorProto.FLOAT, output_shape),
helper.make_tensor_value_info("output_2", TensorProto.INT64, []),
]

graph_nodes = [position_node, construct_node, insert_node, concat_node, split_node, at_node]

Expand Down

0 comments on commit 2ecdfb4

Please sign in to comment.