Skip to content

Commit 2b06224

Browse files
Fix number of returns (#364)
* Fix number of returns * version bump --------- Co-authored-by: Iuri de Silvio <[email protected]>
1 parent 2d27b1a commit 2b06224

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

roboflow/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from roboflow.models import CLIPModel, GazeModel # noqa: F401
1616
from roboflow.util.general import write_line
1717

18-
__version__ = "1.1.55"
18+
__version__ = "1.1.56"
1919

2020

2121
def check_key(api_key, model, notebook, num_retries=0):

roboflow/core/workspace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ def _save_annotation(image_id, imagedesc):
372372
if not annotation_path:
373373
return None, None
374374

375-
annotation, upload_time = project.save_annotation(
375+
annotation, upload_time, _retry_attempts = project.save_annotation(
376376
annotation_path=annotation_path,
377377
annotation_labelmap=labelmap,
378378
image_id=image_id,

0 commit comments

Comments
 (0)