Skip to content

Commit 4f0fa63

Browse files
authored
Merge pull request #169 from roboflow/fix-isprediction-param
fix prediction parameter name
2 parents 5ae3e32 + 412a7cf commit 4f0fa63

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
@@ -12,7 +12,7 @@
1212
from roboflow.core.workspace import Workspace
1313
from roboflow.util.general import write_line
1414

15-
__version__ = "1.1.3"
15+
__version__ = "1.1.4"
1616

1717

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

roboflow/core/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ def __annotation_upload(
413413
"?api_key=",
414414
self.__api_key,
415415
"&name=" + os.path.basename(annotation_path),
416-
"&is_prediction=true" if is_prediction else "",
416+
"&prediction=true" if is_prediction else "",
417417
]
418418
)
419419

0 commit comments

Comments
 (0)