Skip to content

Commit a74bb61

Browse files
dshabinVaghinak Basentsyan
authored andcommitted
Fix usnill
1 parent 1c9bc81 commit a74bb61

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
@@ -2011,7 +2011,7 @@ def attach_file_urls_to_project(project, attachments, annotation_status):
20112011
df = df[~df["url"].isnull()]
20122012

20132013
if "name" in df.columns:
2014-
df.loc[df["name"].usnull(), "name"] = [
2014+
df.loc[df["name"].isnull(), "name"] = [
20152015
str(uuid.uuid4()) for _ in range(df["name"].isnull().sum())
20162016
]
20172017
else:

0 commit comments

Comments
 (0)