* INCR-250: Make compatible with Python 3.x without breaking Python 2.7 support --> openedx/core/djangoapps/programs * INCR-250: Disable pylint warning and replace _f placeholder with actual name * INCR-250: pylint format correction and fix over length line limit
17 lines
344 B
Python
17 lines
344 B
Python
"""
|
|
Programs Configuration
|
|
"""
|
|
from __future__ import absolute_import
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ProgramsConfig(AppConfig):
|
|
"""
|
|
Default configuration for the "openedx.core.djangoapps.programs" Django application.
|
|
"""
|
|
name = u'openedx.core.djangoapps.programs'
|
|
|
|
def ready(self):
|
|
from . import signals
|