17 lines
703 B
Python
17 lines
703 B
Python
# lint-amnesty, pylint: disable=missing-module-docstring
|
|
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
from edx_django_utils.plugins import PluginSignals # lint-amnesty, pylint: disable=unused-import
|
|
|
|
from openedx.core.djangoapps.plugins.constants import ProjectType # lint-amnesty, pylint: disable=unused-import
|
|
|
|
|
|
class SchedulesConfig(AppConfig): # lint-amnesty, pylint: disable=missing-class-docstring
|
|
name = 'openedx.core.djangoapps.schedules'
|
|
verbose_name = _('Schedules')
|
|
|
|
def ready(self):
|
|
# noinspection PyUnresolvedReferences
|
|
from . import signals, tasks # lint-amnesty, pylint: disable=unused-import, unused-variable
|