Hi,
I am trying to import a couple of labels from my model via MALPredictionImport (but lb.LabelImport).
My code is very similar to the example:
label = lb_types.Label(data={"global_key": global_key}, annotations=annotations)
labels_payload.append(label)
logging.info(f"Creating new import with name {mal_job_name}")
update_labels = project.MALPredictionImport.create_from_objects(client=lb_client, project_id=PROJECT_ID, name=mal_job_name, predictions=labels_payload)
update_labels.wait_till_done(show_progress=True)
logging.warning(f"Updated labels: {update_labels.errors}")
logging.warning(f"Updated labels: {update_labels}")```
The result is, that the progress bar keeps running until 100%, however the script never ends and on the dashboard under automation, the status stays at "running" forever.
The code used to work and still works on a subset on my local machine and I do not get any errors, only the expected logging for unfinished job.
" INFO - Sleeping for 40 seconds..."
labelbox version 6.9.0 and 6.10.0
python 3.11