Skip to content

Commit df493d0

Browse files
committed
Merge commit
2 parents 8427214 + e464097 commit df493d0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

superannotate/db/projects.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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)

superannotate/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.1.3b1"
1+
__version__ = "4.1.3b3"

0 commit comments

Comments
 (0)