Jan Dittberner
4af1a39ca4
- update dependencies - fix deprecation warnings - fix tests - skip some tests that need more work - reformat changed code with isort and black
25 lines
552 B
Python
25 lines
552 B
Python
"""
|
|
This module contains the :py:class:`django.apps.AppConfig` instance for the
|
|
:py:mod:`osusers` app.
|
|
|
|
"""
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class OsusersAppConfig(AppConfig):
|
|
"""
|
|
AppConfig for the :py:mod:`osusers` app.
|
|
|
|
"""
|
|
|
|
name = "osusers"
|
|
verbose_name = _("Operating System Users and Groups")
|
|
|
|
def ready(self):
|
|
"""
|
|
Takes care of importing the signal handlers of the :py:mod:`osusers`
|
|
app.
|
|
|
|
"""
|
|
import osusers.signals # NOQA
|