changeset 905fc60a57b2 in modules/sale_amendment:default
details:
https://hg.tryton.org/modules/sale_amendment?cmd=changeset;node=905fc60a57b2
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 | 7 ++++---
2 files changed, 6 insertions(+), 3 deletions(-)
diffs (30 lines):
diff -r 1d1bb073b247 -r 905fc60a57b2 .flake8
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/.flake8 Sun Mar 01 12:33:53 2020 +0100
@@ -0,0 +1,2 @@
+[flake8]
+ignore=E123,E124,E126,E128,W503
diff -r 1d1bb073b247 -r 905fc60a57b2 setup.py
--- a/setup.py Wed Dec 04 11:09:36 2019 +0100
+++ b/setup.py Sun Mar 01 12:33:53 2020 +0100
@@ -79,8 +79,8 @@
keywords='tryton sale amendment',
package_dir={'trytond.modules.sale_amendment': '.'},
packages=(
- ['trytond.modules.sale_amendment'] +
- ['trytond.modules.sale_amendment.%s' % p for p in find_packages()]
+ ['trytond.modules.sale_amendment']
+ + ['trytond.modules.sale_amendment.%s' % p for p in find_packages()]
),
package_data={
'trytond.modules.sale_amendment': (info.get('xml', [])
@@ -94,7 +94,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)',