diff --git a/roboflow/__init__.py b/roboflow/__init__.py index 851a5406..3c03de8c 100644 --- a/roboflow/__init__.py +++ b/roboflow/__init__.py @@ -15,7 +15,7 @@ from roboflow.models import CLIPModel, GazeModel # noqa: F401 from roboflow.util.general import write_line -__version__ = "1.1.55" +__version__ = "1.1.56" def check_key(api_key, model, notebook, num_retries=0): diff --git a/roboflow/core/workspace.py b/roboflow/core/workspace.py index 3a59b8f4..79bffd7a 100644 --- a/roboflow/core/workspace.py +++ b/roboflow/core/workspace.py @@ -372,7 +372,7 @@ def _save_annotation(image_id, imagedesc): if not annotation_path: return None, None - annotation, upload_time = project.save_annotation( + annotation, upload_time, _retry_attempts = project.save_annotation( annotation_path=annotation_path, annotation_labelmap=labelmap, image_id=image_id,