Files
edx-platform/openedx/features/calendar_sync/apps.py
Awais Qureshi 7ee49390bb BOM-2334
Apply pylint-amnesty.
2021-02-08 20:12:45 +05:00

19 lines
536 B
Python

"""
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(UserCalendarSyncConfig, self).ready() # lint-amnesty, pylint: disable=super-with-arguments
# noinspection PyUnresolvedReferences
import openedx.features.calendar_sync.signals # pylint: disable=import-outside-toplevel,unused-import