django1/django/contrib/humanize/apps.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
194 B
Python
Raw Normal View History

from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class HumanizeConfig(AppConfig):
name = "django.contrib.humanize"
verbose_name = _("Humanize")