Skip to content

Commit d5112e6

Browse files
Narek MkhitaryanNarek Mkhitaryan
authored andcommitted
add UnsupportedType in project_type enum
1 parent cf98291 commit d5112e6

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-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
@@ -72,7 +72,7 @@
7272
PROJECT_STATUS = Literal["NotStarted", "InProgress", "Completed", "OnHold"]
7373

7474
PROJECT_TYPE = Literal[
75-
"Vector", "Pixel", "Video", "Document", "Tiled", "Other", "PointCloud"
75+
"Vector", "Pixel", "Video", "Document", "Tiled", "Other", "PointCloud", "CustomEditor"
7676
]
7777

7878
CLASS_TYPE = Literal["object", "tag"]

src/superannotate/lib/core/enums.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ class ProjectType(BaseTitledEnum):
9494
OTHER = "Other", 6
9595
POINT_CLOUD = "PointCloud", 7
9696
CUSTOM_EDITOR = "CustomEditor", 8
97+
UNSUPPORTED_TYPE_1 = "UnsupportedType", 9
98+
UNSUPPORTED_TYPE_2 = "UnsupportedType", 10
9799

98100
@classproperty
99101
def images(self):

0 commit comments

Comments
 (0)