aboutsummaryrefslogblamecommitdiffstats
path: root/pyblackbird_cc/users/apps.py
blob: beec95396036df1135e53822c614a3c66d76dfc5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                             
import contextlib

from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _


class UsersConfig(AppConfig):
    name = "pyblackbird_cc.users"
    verbose_name = _("Users")

    def ready(self):
        with contextlib.suppress(ImportError):
            import pyblackbird_cc.users.signals  # noqa: F401