/
githubmirror
/
edx-platform
Обзор
Документация
Войти
/
githubmirror
/
edx-platform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
release-ulmo
cms/djangoapps/contentstore/apps.py
23 строки
562 B
M. Zulqarnain
BOM-2369 (A): pyupgrade on api,contentstore and cms_user_tasks apps under CMS (#26676)
04 мар 2021, 13:06
Не верифицирован
04 мар 2021, 13:06
5562944
Код
Авторство
О чём код?
""" Contentstore Application Configuration Above-modulestore level signal handlers are connected here. """ from django.apps import AppConfig class ContentstoreConfig(AppConfig): """ Application Configuration for Contentstore. """ name = 'cms.djangoapps.contentstore' def ready(self): """ Connect handlers to signals. """ # Can't import models at module level in AppConfigs, and models get # included from the signal handlers from .signals import handlers # pylint: disable=unused-import