Source code for pizzas.apps

"""Configuration for the pizzas package"""
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _


[docs]class PizzasConfig(AppConfig): """AppConfig for the pizzas package""" name = "pizzas" verbose_name = _("Pizzas")
[docs] def ready(self): """Imports the signals when the app is ready""" from . import signals