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
403 B
Python
17 lines
403 B
Python
"""
|
|
This module contains the :py:class:`django.apps.AppConfig` instance for the
|
|
:py:mod:`hostingpackages` app.
|
|
|
|
"""
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class HostingPackagesAppConfig(AppConfig):
|
|
"""
|
|
AppConfig for the :py:mod:`hostingpackages` app.
|
|
|
|
"""
|
|
|
|
name = "hostingpackages"
|
|
verbose_name = _("Hosting Packages and Options")
|