Files
edx-platform/lms/djangoapps/course_goals/apps.py
Stu Young 6478d43329 incr-298 (#20606)
* run python modernize
* run isort
* Split out handlers/apps into separate files.
2019-05-16 11:02:36 -04:00

21 lines
407 B
Python

"""
Course Goals Application Configuration
Signal handlers are connected here.
"""
from django.apps import AppConfig
class CourseGoalsConfig(AppConfig):
"""
Application Configuration for Course Goals.
"""
name = 'lms.djangoapps.course_goals'
def ready(self):
"""
Connect signal handlers.
"""
from . import handlers # pylint: disable=unused-variable