We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f94d115 commit df42889Copy full SHA for df42889
inference/models/__init__.py
@@ -1,16 +1,16 @@
1
# inference/models/__init__.py
2
-from .inference import ExternalJob, InferenceJob, ModelVersion # noqa
3
-from .inference_choice_fields import ( # noqa
+from .inference import ExternalJob, InferenceJob, ModelVersion
+from .inference_choice_fields import (
4
ClassificationType,
5
ExternalJobStatus,
6
InferenceJobStatus,
7
)
8
9
__all__ = [
10
"ClassificationType",
11
- "InferenceJobStatus",
12
"ExternalJobStatus",
13
- "ModelVersion",
14
- "InferenceJob",
+ "InferenceJobStatus",
15
"ExternalJob",
+ "InferenceJob",
+ "ModelVersion",
16
]
0 commit comments