diff --git a/src/superannotate/lib/app/interface/sdk_interface.py b/src/superannotate/lib/app/interface/sdk_interface.py index fe4bfeffc..0c78d080b 100644 --- a/src/superannotate/lib/app/interface/sdk_interface.py +++ b/src/superannotate/lib/app/interface/sdk_interface.py @@ -77,7 +77,6 @@ "Video", "Document", "Tiled", - "Other", "PointCloud", "GenAI", ] @@ -312,7 +311,7 @@ def create_project( :param project_description: the new project's description :type project_description: str - :param project_type: the new project type, Vector, Pixel, Video, Document, Tiled, PointCloud, Other. + :param project_type: the new project type, Vector, Pixel, Video, Document, Tiled, PointCloud, GenAI. :type project_type: str :param settings: list of settings objects diff --git a/src/superannotate/lib/core/__init__.py b/src/superannotate/lib/core/__init__.py index 856ac368c..f4f2e6717 100644 --- a/src/superannotate/lib/core/__init__.py +++ b/src/superannotate/lib/core/__init__.py @@ -99,7 +99,6 @@ def setup_logging(level=DEFAULT_LOGGING_LEVEL, file_path=LOG_FILE_LOCATION): LIMITED_FUNCTIONS = { ProjectType.VIDEO: DEPRECATED_VIDEO_PROJECTS_MESSAGE, ProjectType.DOCUMENT: DEPRECATED_DOCUMENT_PROJECTS_MESSAGE, - ProjectType.OTHER: DEPRECATED_PROJECTS_MESSAGE, ProjectType.POINT_CLOUD: DEPRECATED_PROJECTS_MESSAGE, ProjectType.TILED: DEPRECATED_PROJECTS_MESSAGE, }