Files
edx-platform/lms/djangoapps/gating/apps.py
Stu Young 158973ea70 incr-252 (#20553)
* run python-modernize
2019-05-15 14:54:38 -04:00

18 lines
405 B
Python

"""
Django AppConfig module for the Gating app
"""
from __future__ import absolute_import
from django.apps import AppConfig
class GatingConfig(AppConfig):
"""
Django AppConfig class for the gating app
"""
name = 'gating'
def ready(self):
# Import signals to wire up the signal handlers contained within
from gating import signals # pylint: disable=unused-variable