Skip to content

Commit

Permalink
Fix number of returns (#364)
Browse files Browse the repository at this point in the history
* Fix number of returns

* version bump

---------

Co-authored-by: Iuri de Silvio <[email protected]>
  • Loading branch information
probicheaux and iurisilvio authored Mar 11, 2025
1 parent 2d27b1a commit 2b06224
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion roboflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion roboflow/core/workspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 2b06224

Please sign in to comment.