This will remove imports from __future__ that are no longer needed. https://docs.python.org/3.5/library/2to3.html#2to3fixer-future
17 lines
306 B
Python
17 lines
306 B
Python
"""
|
|
Programs Configuration
|
|
"""
|
|
|
|
|
|
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
|