Skip to content

Commit dbb89fc

Browse files
committed
Fix imports order
1 parent 44e0874 commit dbb89fc

File tree

1 file changed

+1
-2
lines changed
  • model_api/python/model_api/models

1 file changed

+1
-2
lines changed

model_api/python/model_api/models/model.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
from contextlib import contextmanager
1111
from typing import TYPE_CHECKING, Any, NoReturn, Type
1212

13-
from model_api.adapters.onnx_adapter import ONNXRuntimeAdapter
1413
from model_api.adapters.inference_adapter import InferenceAdapter
14+
from model_api.adapters.onnx_adapter import ONNXRuntimeAdapter
1515
from model_api.adapters.openvino_adapter import (
1616
OpenvinoAdapter,
1717
create_core,
@@ -25,7 +25,6 @@
2525
from numpy import ndarray
2626

2727

28-
2928
class WrapperError(Exception):
3029
"""The class for errors occurred in Model API wrappers"""
3130

0 commit comments

Comments
 (0)