You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
394 B
Python
16 lines
394 B
Python
# Copyright (C) 2018-2022 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class EngineConfig(AppConfig):
|
|
name = 'cvat.apps.engine'
|
|
|
|
def ready(self):
|
|
# Required to define signals in application
|
|
import cvat.apps.engine.signals
|
|
# Required in order to silent "unused-import" in pyflake
|
|
assert cvat.apps.engine.signals
|