Skip to content

Commit ef7cb2f

Browse files
committed
Updated worklfow missing classes log in create_project
1 parent 2eb3d00 commit ef7cb2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/superannotate/lib/app/interface/sdk_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ def create_project(
358358
invalid_classes.append(step["className"])
359359
if invalid_classes:
360360
raise AppException(
361-
f"There are no [{', '.join(invalid_classes)}] classes created in the project."
361+
f"There are no [{', '.join(set(invalid_classes))}] classes created in the project."
362362
)
363363
project_response = self.controller.projects.create(
364364
entities.ProjectEntity(

0 commit comments

Comments
 (0)