13 lines
313 B
Python
13 lines
313 B
Python
import contextlib
|
|
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class UsersConfig(AppConfig):
|
|
name = "lms.users"
|
|
verbose_name = _("Users")
|
|
|
|
def ready(self):
|
|
with contextlib.suppress(ImportError):
|
|
import lms.users.signals # noqa: F401
|