Skip to content

Commit

Permalink
Merge pull request #169 from roboflow/fix-isprediction-param
Browse files Browse the repository at this point in the history
fix prediction parameter name
  • Loading branch information
tonylampada committed Aug 23, 2023
2 parents 5ae3e32 + 412a7cf commit 4f0fa63
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 @@ -12,7 +12,7 @@
from roboflow.core.workspace import Workspace
from roboflow.util.general import write_line

__version__ = "1.1.3"
__version__ = "1.1.4"


def check_key(api_key, model, notebook, num_retries=0):
Expand Down
2 changes: 1 addition & 1 deletion roboflow/core/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ def __annotation_upload(
"?api_key=",
self.__api_key,
"&name=" + os.path.basename(annotation_path),
"&is_prediction=true" if is_prediction else "",
"&prediction=true" if is_prediction else "",
]
)

Expand Down

0 comments on commit 4f0fa63

Please sign in to comment.