Reformat code with automated tools

Apply standardized code style
This commit is contained in:
medmunds
2023-02-06 12:27:43 -08:00
committed by Mike Edmunds
parent 40891fcb4a
commit b4e22c63b3
94 changed files with 12936 additions and 7443 deletions

View File

@@ -1,7 +1,7 @@
# Expose package version at root of package
from ._version import __version__, VERSION # NOQA: F401
from django import VERSION as DJANGO_VERSION
from ._version import VERSION, __version__ # NOQA: F401
if DJANGO_VERSION < (3, 2, 0):
default_app_config = 'anymail.apps.AnymailBaseConfig'
default_app_config = "anymail.apps.AnymailBaseConfig"