apps.py 370 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
"""
Badges Application Configuration

Signal handlers are connected here.
"""

from django.apps import AppConfig


class BadgesConfig(AppConfig):
    """
    Application Configuration for Badges.
    """
    name = u'badges'

    def ready(self):
        """
        Connect signal handlers.
        """
        from . import handlers  # pylint: disable=unused-variable