We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3468b12 commit 4d34a18Copy full SHA for 4d34a18
anymail/__init__.py
@@ -1,2 +1,5 @@
1
# Expose package version at root of package
2
from ._version import __version__, VERSION # NOQA: F401
3
+
4
5
+default_app_config = 'anymail.apps.AnymailBaseConfig'
anymail/apps.py
@@ -0,0 +1,9 @@
+from django.apps import AppConfig
+class AnymailBaseConfig(AppConfig):
+ name = 'anymail'
6
+ verbose_name = "Anymail"
7
8
+ def ready(self):
9
+ pass
0 commit comments