From 2b0622411270be33eba2b122109c44fb18026240 Mon Sep 17 00:00:00 2001 From: Peter Date: Tue, 11 Mar 2025 00:10:32 -0700 Subject: [PATCH] Fix number of returns (#364) * Fix number of returns * version bump --------- Co-authored-by: Iuri de Silvio --- roboflow/__init__.py | 2 +- roboflow/core/workspace.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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,