Skip to content

Commit 4145a6b

Browse files
committed
Return strs in upload_images_to_project duplicate result
1 parent dc76c92 commit 4145a6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

superannotate/db/projects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ def upload_images_to_project(
803803
i = j
804804
break
805805
if i != -1:
806-
duplicate_images.append(img_paths[i])
806+
duplicate_images.append(str(img_paths[i]))
807807
del img_paths[i]
808808
if len(duplicate_images) != 0:
809809
logger.warning(

0 commit comments

Comments
 (0)