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
387 B
Python
17 lines
387 B
Python
"""
|
|
This module contains the :py:class:`django.apps.AppConfig` instance for the
|
|
:py:mod:`managemails` app.
|
|
|
|
"""
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class ManageMailsAppConfig(AppConfig):
|
|
"""
|
|
AppConfig for the :py:mod:`managemails` app.
|
|
|
|
"""
|
|
|
|
name = "managemails"
|
|
verbose_name = _("Mailboxes and Mail Addresses")
|