cvat/tests/python/shared/tasks/enums.py

11 lines
164 B
Python

# Copyright (C) CVAT.ai Corporation
#
# SPDX-License-Identifier: MIT
from enum import Enum
class SourceDataType(Enum):
images = "images"
video = "video"