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 915ab19 commit db78499Copy full SHA for db78499
labelbox/schema/annotation_import.py
@@ -259,7 +259,7 @@ def from_name(
259
if response is None:
260
raise labelbox.exceptions.ResourceNotFoundError(MEAPredictionImport, params)
261
262
- return response["modelErrorAnalysisPredictionImport"]
+ return cls(client, response["modelErrorAnalysisPredictionImport"])
263
264
265
class MALPredictionImport(AnnotationImport):
@@ -310,4 +310,4 @@ def from_name(
310
311
raise labelbox.exceptions.ResourceNotFoundError(MALPredictionImport, params)
312
313
- return response["modelAssistedLabelingPredictionImport"]
+ return cls(client, response["modelAssistedLabelingPredictionImport"])
0 commit comments