apps.py 365 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
"""
Django AppConfig module for the Gating app
"""
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