-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply standardized code style
- Loading branch information
Showing
94 changed files
with
13,001 additions
and
7,508 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
Reporting an error? It's helpful to know: | ||
|
||
* Anymail version | ||
* ESP (Mailgun, SendGrid, etc.) | ||
* Your ANYMAIL settings (change secrets to "redacted") | ||
* Versions of Django, requests, python | ||
* Exact error message and/or stack trace | ||
* Any other relevant code and settings (e.g., for problems | ||
- Anymail version | ||
- ESP (Mailgun, SendGrid, etc.) | ||
- Your ANYMAIL settings (change secrets to "redacted") | ||
- Versions of Django, requests, python | ||
- Exact error message and/or stack trace | ||
- Any other relevant code and settings (e.g., for problems | ||
sending, your code that sends the message) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ name: release | |
|
||
on: | ||
push: | ||
tags: [ "v[0-9]*" ] | ||
tags: ["v[0-9]*"] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
|
||
from django import VERSION as DJANGO_VERSION | ||
if DJANGO_VERSION < (3, 2, 0): | ||
default_app_config = 'anymail.apps.AnymailBaseConfig' | ||
default_app_config = "anymail.apps.AnymailBaseConfig" |
Oops, something went wrong.