This will remove imports from __future__ that are no longer needed. https://docs.python.org/3.5/library/2to3.html#2to3fixer-future
20 lines
359 B
Python
20 lines
359 B
Python
"""
|
|
Commerce Application Configuration
|
|
"""
|
|
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CommerceConfig(AppConfig):
|
|
"""
|
|
Application Configuration for Commerce.
|
|
"""
|
|
name = 'lms.djangoapps.commerce'
|
|
|
|
def ready(self):
|
|
"""
|
|
Connect handlers to signals.
|
|
"""
|
|
from . import signals # pylint: disable=unused-variable
|