File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -40,10 +40,10 @@ exclude_patterns = [
4040 ' tests/**' , # Skip linting test files for speed
4141 # FIXME: Fix typing annotations in these files
4242 ' examples/custom_op_expansion.py' ,
43- ' onnxscript/converter_test.py' ,
44- ' onnxscript/converter.py' ,
45- ' onnxscript/evaluator_test.py' ,
46- ' onnxscript/evaluator.py' ,
43+ ' onnxscript/_internal/ converter_test.py' ,
44+ ' onnxscript/_internal/ converter.py' ,
45+ ' onnxscript/_internal/ evaluator_test.py' ,
46+ ' onnxscript/_internal/ evaluator.py' ,
4747 ' onnxscript/onnx_types.py' ,
4848 ' onnxscript/**/*_test.py' , # Skip linting test files for speed
4949 ' onnxscript/function_libs/torch_lib/ops/**' , # Operators typing do not play well with mypy
Original file line number Diff line number Diff line change 6666
6767import importlib .metadata
6868
69- from .backend .onnx_export import export2python as proto2python
7069from ._internal .main import export_onnx_lib , graph , script
70+ from .backend .onnx_export import export2python as proto2python
7171
7272# isort: off
7373from .onnx_opset import (
Original file line number Diff line number Diff line change 1010
1111# Explicitly list main exports for type checking
1212from onnxscript ._internal .evaluator import (
13+ Evaluator ,
1314 default ,
1415 default_as ,
15- Evaluator ,
1616)
1717
1818__all__ = ["default" , "default_as" , "Evaluator" ]
You can’t perform that action at this time.
0 commit comments