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

11 lines
164 B
Python
Raw Normal View History

2025-09-16 01:19:40 +00:00
# Copyright (C) CVAT.ai Corporation
#
# SPDX-License-Identifier: MIT
from enum import Enum
class SourceDataType(Enum):
images = "images"
video = "video"