Skip to content

Commit 344955b

Browse files
committed
Lint
Signed-off-by: Justin Chu <[email protected]>
1 parent 7a44f11 commit 344955b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.lintrunner.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,14 +114,14 @@ include_patterns = [
114114
'**/*.py',
115115
]
116116
exclude_patterns = [
117-
'examples/**',
118117
'docs/**',
119-
'onnxscript/converter_test.py',
118+
'examples/**',
119+
'onnxscript/_internal/converter_test.py',
120+
'onnxscript/optimizer/**', # FIXME
121+
'onnxscript/rewriter/**', # FIXME
120122
'tests/functions/**',
121123
'tests/models/**',
122124
'tests/onnx_backend_test_code/**',
123-
'onnxscript/optimizer/**', # FIXME
124-
'onnxscript/rewriter/**', # FIXME
125125
]
126126
command = [
127127
'python',

onnxscript/_internal/values.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -578,8 +578,8 @@ def __getitem__(self, instance):
578578

579579
def fun(*args, **kwargs):
580580
# FIXME(after #225): Move import to the top of the file.
581-
from onnxscript._internal import (
582-
evaluator, # pylint: disable=import-outside-toplevel
581+
from onnxscript._internal import ( # pylint: disable=import-outside-toplevel
582+
evaluator,
583583
)
584584

585585
with evaluator.default_as(instance):

0 commit comments

Comments
 (0)