File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -997,7 +997,7 @@ def attach_image_urls_to_project(
997997 )
998998 annotation_status = common .annotation_status_str_to_int (annotation_status )
999999 team_id , project_id = project ["team_id" ], project ["id" ]
1000- image_data = pd .read_csv (attachments )
1000+ image_data = pd .read_csv (attachments , dtype = str )
10011001 image_data = image_data [~ image_data ["url" ].isnull ()]
10021002 existing_names = image_data [~ image_data ["name" ].isnull ()]
10031003 duplicate_idx_csv = existing_names .duplicated (subset = "name" , keep = "first" )
@@ -2349,4 +2349,4 @@ def clone_project(
23492349 if project_description is not None :
23502350 metadata ["description" ] = project_description
23512351
2352- return create_project_from_metadata (metadata )
2352+ return create_project_from_metadata (metadata )
Original file line number Diff line number Diff line change 1- __version__ = "4.1.3b1 "
1+ __version__ = "4.1.3b3 "
You can’t perform that action at this time.
0 commit comments