Skip to content

Commit df42889

Browse files
committed
reorder imports in models/__init__.py
1 parent f94d115 commit df42889

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

inference/models/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# inference/models/__init__.py
2-
from .inference import ExternalJob, InferenceJob, ModelVersion # noqa
3-
from .inference_choice_fields import ( # noqa
2+
from .inference import ExternalJob, InferenceJob, ModelVersion
3+
from .inference_choice_fields import (
44
ClassificationType,
55
ExternalJobStatus,
66
InferenceJobStatus,
77
)
88

99
__all__ = [
1010
"ClassificationType",
11-
"InferenceJobStatus",
1211
"ExternalJobStatus",
13-
"ModelVersion",
14-
"InferenceJob",
12+
"InferenceJobStatus",
1513
"ExternalJob",
14+
"InferenceJob",
15+
"ModelVersion",
1616
]

0 commit comments

Comments
 (0)