changeset 9648968ae1c6 in modules/marketing_automation:default
details:
https://hg.tryton.org/modules/marketing_automation?cmd=changeset;node=9648968ae1c6
description:
Fix flake8 errors and warnings
We add the flake8 configuration used so we ensure everyone uses the
same.
We remove the usage of __all__ for non public API.
When possible, we rationalize the class name according to its __name__
and module.
issue9082
review297061002
diffstat:
.flake8 | 2 ++
setup.py | 11 +++++++----
tests/__init__.py | 2 +-
3 files changed, 10 insertions(+), 5 deletions(-)
diffs (53 lines):
diff -r 41d7558d006e -r 9648968ae1c6 .flake8
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/.flake8 Sun Mar 01 12:33:52 2020 +0100
@@ -0,0 +1,2 @@
+[flake8]
+ignore=E123,E124,E126,E128,W503
diff -r 41d7558d006e -r 9648968ae1c6 setup.py
--- a/setup.py Wed Feb 19 22:55:53 2020 +0100
+++ b/setup.py Sun Mar 01 12:33:52 2020 +0100
@@ -65,7 +65,8 @@
setup(name=name,
version=version,
- description='Tryton module to plan, coordinate and manage marketing
campaigns',
+ description='Tryton module to plan, '
+ 'coordinate and manage marketing campaigns',
long_description=read('README.rst'),
author='Tryton',
author_email='[email protected]',
@@ -80,8 +81,9 @@
keywords='tryton marketing automation',
package_dir={'trytond.modules.marketing_automation': '.'},
packages=(
- ['trytond.modules.marketing_automation'] +
- ['trytond.modules.marketing_automation.%s' % p for p in
find_packages()]
+ ['trytond.modules.marketing_automation']
+ + ['trytond.modules.marketing_automation.%s' % p
+ for p in find_packages()]
),
package_data={
'trytond.modules.marketing_automation': (info.get('xml', [])
@@ -96,7 +98,8 @@
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Legal Industry',
- 'License :: OSI Approved :: GNU General Public License v3 or later
(GPLv3+)',
+ 'License :: OSI Approved :: '
+ 'GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: Bulgarian',
'Natural Language :: Catalan',
'Natural Language :: Chinese (Simplified)',
diff -r 41d7558d006e -r 9648968ae1c6 tests/__init__.py
--- a/tests/__init__.py Wed Feb 19 22:55:53 2020 +0100
+++ b/tests/__init__.py Sun Mar 01 12:33:52 2020 +0100
@@ -2,7 +2,7 @@
# this repository contains the full copyright notices and license terms.
try:
- from trytond.modules.marketing_automation.tests.test_marketing_automation
import suite
+ from trytond.modules.marketing_automation.tests.test_marketing_automation
import suite # noqa: E501
except ImportError:
from .test_marketing_automation import suite