Jan Dittberner
4af1a39ca4
- update dependencies - fix deprecation warnings - fix tests - skip some tests that need more work - reformat changed code with isort and black
17 lines
349 B
Python
17 lines
349 B
Python
"""
|
|
This module contains the :py:class:`django.apps.AppConfig` instance for the
|
|
:py:mod:`domains` app.
|
|
|
|
"""
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class DomainAppConfig(AppConfig):
|
|
"""
|
|
AppConfig for the :py:mod:`domains` app.
|
|
|
|
"""
|
|
|
|
name = "domains"
|
|
verbose_name = _("Domains")
|