@@ -339,7 +339,7 @@ def upload_video_to_project(
339339 )
340340
341341 filenames = upload_images_from_folder_to_project (
342- project ,
342+ ( project , project_folder ) ,
343343 tempdir .name ,
344344 extensions = ["jpg" ],
345345 annotation_status = annotation_status ,
@@ -766,9 +766,6 @@ def __create_image(
766766 "team_id" : str (team_id ),
767767 "images" : [],
768768 "annotation_status" : annotation_status ,
769- "team_id" : str (team_id ),
770- "images" : [],
771- "annotation_status" : annotation_status ,
772769 "meta" : {},
773770 "upload_state" : upload_state_code
774771 }
@@ -1226,7 +1223,7 @@ def upload_images_from_public_urls_to_project(
12261223 finish_event .set ()
12271224 tqdm_thread .join ()
12281225 images_uploaded_paths , images_not_uploaded_paths , duplicate_images_paths = upload_images_to_project (
1229- project ,
1226+ ( project , project_folder ) ,
12301227 images_to_upload ,
12311228 annotation_status = annotation_status ,
12321229 image_quality_in_editor = image_quality_in_editor
@@ -1312,7 +1309,7 @@ def upload_images_from_google_cloud_to_project(
13121309 path_to_url [str (image_save_pth )] = image_blob .name
13131310 images_to_upload .append (image_save_pth )
13141311 images_uploaded_paths , images_not_uploaded_paths , duplicate_images_paths = upload_images_to_project (
1315- project ,
1312+ ( project , project_folder ) ,
13161313 images_to_upload ,
13171314 annotation_status = annotation_status ,
13181315 image_quality_in_editor = image_quality_in_editor
@@ -1408,7 +1405,7 @@ def upload_images_from_azure_blob_to_project(
14081405 path_to_url [str (image_save_pth )] = image_blob .name
14091406 images_to_upload .append (image_save_pth )
14101407 images_uploaded_paths , images_not_uploaded_paths , duplicate_images_paths = upload_images_to_project (
1411- project ,
1408+ ( project , project_folder ) ,
14121409 images_to_upload ,
14131410 annotation_status = annotation_status ,
14141411 image_quality_in_editor = image_quality_in_editor
0 commit comments