Skip to content

Commit 0f87549

Browse files
committed
Fix lint issues
Signed-off-by: G Ramalingam <grama@microsoft.com>
1 parent 86b37c5 commit 0f87549

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

onnxscript/_internal/builder_test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1813,7 +1813,7 @@ def body(op, x):
18131813
[_input("x")],
18141814
domain="com.test",
18151815
name="MixedOutputs",
1816-
opset_imports=_opset,
1816+
opset_imports=_opset,
18171817
)
18181818

18191819
def test_build_function_no_outputs_raises(self):
@@ -1829,7 +1829,7 @@ def body(op, x):
18291829
[_input("x")],
18301830
domain="com.test",
18311831
name="NoOutputs",
1832-
opset_imports=_opset,
1832+
opset_imports=_opset,
18331833
)
18341834

18351835
def test_build_function_input_with_producer_raises(self):
@@ -1844,7 +1844,7 @@ def test_build_function_input_with_producer_raises(self):
18441844
[used_value],
18451845
domain="com.test",
18461846
name="BadInput",
1847-
opset_imports=_opset,
1847+
opset_imports=_opset,
18481848
)
18491849

18501850
def test_build_function_custom_opset(self):

0 commit comments

Comments
 (0)