Files
django-anymail/anymail/apps.py
medmunds b4e22c63b3 Reformat code with automated tools
Apply standardized code style
2023-02-06 15:05:24 -08:00

14 lines
347 B
Python

from django.apps import AppConfig
from django.core import checks
from .checks import check_deprecated_settings, check_insecure_settings
class AnymailBaseConfig(AppConfig):
name = "anymail"
verbose_name = "Anymail"
def ready(self):
checks.register(check_deprecated_settings)
checks.register(check_insecure_settings)