blob: beec95396036df1135e53822c614a3c66d76dfc5 (
plain) (
tree)
|
|
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
|