File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -114,14 +114,14 @@ include_patterns = [
114114 ' **/*.py' ,
115115]
116116exclude_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]
126126command = [
127127 ' python' ,
Original file line number Diff line number Diff 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 ):
You can’t perform that action at this time.
0 commit comments