mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 03:41:05 -05:00
Reformat code with automated tools
Apply standardized code style
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
VERSION = (9, 0)
|
||||
__version__ = '.'.join([str(x) for x in VERSION]) # major.minor.patch or major.minor.devN
|
||||
__minor_version__ = '.'.join([str(x) for x in VERSION[:2]]) # Sphinx's X.Y "version"
|
||||
|
||||
#: major.minor.patch or major.minor.devN
|
||||
__version__ = ".".join([str(x) for x in VERSION])
|
||||
|
||||
#: Sphinx's X.Y "version"
|
||||
__minor_version__ = ".".join([str(x) for x in VERSION[:2]])
|
||||
|
||||
Reference in New Issue
Block a user