* INCR-149: Run python-modernize on openedx/core/djangoapps [self_paced, coursegraph] * INCR-149: Groups to absolute_import and unicode_literals
18 lines
318 B
Python
18 lines
318 B
Python
"""
|
|
Coursegraph Application Configuration
|
|
|
|
Signal handlers are connected here.
|
|
"""
|
|
from __future__ import absolute_import
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CoursegraphConfig(AppConfig):
|
|
"""
|
|
AppConfig for courseware app
|
|
"""
|
|
name = 'openedx.core.djangoapps.coursegraph'
|
|
|
|
from . import tasks
|