Fixes: None; Extra: 1) Remove unused `divider_title` attribute across app configurations and settings; 2) Cleanup unnecessary translation import in `daisy.py`.
14 lines
383 B
Python
14 lines
383 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class VibesAuthConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "vibes_auth"
|
|
verbose_name = _("authentication")
|
|
icon = "fa fa-solid fa-user"
|
|
priority = 89
|
|
hide = False
|
|
|
|
def ready(self):
|
|
import vibes_auth.signals # noqa: F401
|