Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/superannotate/lib/app/interface/sdk_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@
"Video",
"Document",
"Tiled",
"Other",
"PointCloud",
"GenAI",
]
Expand Down Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion src/superannotate/lib/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
Expand Down