/
githubmirror
/
edx-platform
Обзор
Документация
Войти
/
githubmirror
/
edx-platform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
release-ulmo
openedx/features/calendar_sync/apps.py
18 строк
454 B
Awais Qureshi
BOM-2442
08 мар 2021, 11:13
08 мар 2021, 11:13
d0ed3ee
Код
Авторство
О чём код?
""" Define the calendar_sync Django App. """ # -*- coding: utf-8 -*- from django.apps import AppConfig class UserCalendarSyncConfig(AppConfig): # lint-amnesty, pylint: disable=missing-class-docstring name = 'openedx.features.calendar_sync' def ready(self): super().ready() # noinspection PyUnresolvedReferences import openedx.features.calendar_sync.signals # pylint: disable=import-outside-toplevel,unused-import