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
355 B
Python
17 lines
355 B
Python
"""
|
|
This module contains the :py:class:`django.apps.AppConfig` instance for the
|
|
:py:mod:`websites` app.
|
|
|
|
"""
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class WebsitesAppConfig(AppConfig):
|
|
"""
|
|
AppConfig for the :py:mod:`websites` app.
|
|
|
|
"""
|
|
|
|
name = "websites"
|
|
verbose_name = _("Websites")
|