Source code for photos.apps

from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _


[docs]class PhotosConfig(AppConfig): """AppConfig class for Photos app.""" name = "photos" verbose_name = _("Photos")
[docs] def ready(self): """Import the signals when the app is ready.""" super().ready() # pylint: disable=unused-import,import-outside-toplevel from . import signals