Skip to content

Commit 6ce95e8

Browse files
Fix circular import
1 parent 933eacc commit 6ce95e8

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

Pipfile

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ flask-cors = "==3.0.10"
1212
flask-restful = "==0.3.9"
1313
flask-socketio = "==5.1.0"
1414
jsonpickle = "==2.0.0"
15-
numpy = "==1.21.6"
1615
onnx = "==1.12.0"
1716
onnx2torch = "==1.5.6"
1817
onnxruntime = "==1.14.1"

requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ Flask-Cors==3.0.10
66
Flask-RESTful==0.3.9
77
Flask-SocketIO==5.1.0
88
jsonpickle==2.0.0
9-
numpy==1.21.6
109
opencv-python==4.7.0.72
1110
Pillow==9.5.0
1211
scandir==1.10.0

src/engine/server/models/model_utils/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import cv2
2121
import numpy as np
2222
import tensorflow as tf
23-
from server.services.global_store import Errors, PortalError
23+
from server.services.errors import Errors, PortalError
2424

2525
MODEL_TYPES = {
2626
"yolov8": "yolov8",

0 commit comments

Comments
 (0)