<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">from django.apps import AppConfig as BaseConfig
from django.utils.translation import gettext_lazy as _


class TaggitAppConfig(BaseConfig):
    name = "taggit"
    verbose_name = _("Taggit")
    default_auto_field = "django.db.models.AutoField"
</pre></body></html>