Skip to content

Commit ec942a8

Browse files
CopilotDimaBir
andcommitted
Fix import sorting in onnx_cuda_inference.py
Co-authored-by: DimaBir <28827735+DimaBir@users.noreply.github.com>
1 parent 092f5cc commit ec942a8

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

src/onnx_cuda_inference.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
from src.onnx_inference import ONNXInference
2-
from src.onnx_exporter import ONNXExporter
3-
import onnxruntime as ort
41
import os
52

3+
import onnxruntime as ort
4+
5+
from src.onnx_exporter import ONNXExporter
6+
from src.onnx_inference import ONNXInference
7+
8+
69
class ONNXInferenceCUDA(ONNXInference):
710
def __init__(self, model_loader, model_path, debug_mode=False):
811
"""

0 commit comments

Comments
 (0)