We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eb3d00 commit ef7cb2fCopy full SHA for ef7cb2f
src/superannotate/lib/app/interface/sdk_interface.py
@@ -358,7 +358,7 @@ def create_project(
358
invalid_classes.append(step["className"])
359
if invalid_classes:
360
raise AppException(
361
- f"There are no [{', '.join(invalid_classes)}] classes created in the project."
+ f"There are no [{', '.join(set(invalid_classes))}] classes created in the project."
362
)
363
project_response = self.controller.projects.create(
364
entities.ProjectEntity(
0 commit comments