项目文件夹

文件
2026-07-13 13:32:23 +08:00

19 行
423 B
Python

# Copyright (C) CVAT.ai Corporation
#
# SPDX-License-Identifier: MIT
from django.apps import AppConfig
class ConsensusConfig(AppConfig):
name = "cvat.apps.consensus"
def ready(self) -> None:
from cvat.apps.iam.permissions import load_app_iam_rules
load_app_iam_rules(self)
# Required to define signals in the application
from . import signals # pylint: disable=unused-import