19 lines
442 B
Python
19 lines
442 B
Python
"""
|
|
Psychology app configuration.
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class PsychologyConfig(AppConfig):
|
|
"""Configuration for the Psychology app."""
|
|
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'psychology'
|
|
verbose_name = _('Psychology')
|
|
|
|
def ready(self):
|
|
"""Import signals when app is ready."""
|
|
import psychology.signals
|