We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d48ed0 commit d42969dCopy full SHA for d42969d
roboflow/core/project.py
@@ -476,6 +476,8 @@ def single_upload(
476
is_prediction: bool = False,
477
**kwargs,
478
):
479
+ project_url = self.id.rsplit("/")[1]
480
+ print("project url", project_url)
481
if image_path and image_id:
482
raise Exception("You can't pass both image_id and image_path")
483
if not (image_path or image_id):
@@ -484,7 +486,6 @@ def single_upload(
484
486
annotation_labelmap = load_labelmap(annotation_labelmap)
485
487
uploaded_image, uploaded_annotation = None, None
488
if image_path:
- project_url = self.id.rsplit("/")[1]
489
uploaded_image = retry(
490
num_retry_uploads,
491
Exception,
0 commit comments