changeset 18d08f4df8f9 in modules/edocument_uncefact:default
details:
https://hg.tryton.org/modules/edocument_uncefact?cmd=changeset;node=18d08f4df8f9
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 | 8 +++++---
tests/__init__.py | 2 +-
3 files changed, 8 insertions(+), 4 deletions(-)
diffs (43 lines):
diff -r a6d84d0aba4e -r 18d08f4df8f9 .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 a6d84d0aba4e -r 18d08f4df8f9 setup.py
--- a/setup.py Wed Dec 04 11:09:35 2019 +0100
+++ b/setup.py Sun Mar 01 12:33:52 2020 +0100
@@ -82,8 +82,9 @@
keywords='tryton electronic document UN/CEFACT UNECE',
package_dir={'trytond.modules.edocument_uncefact': '.'},
packages=(
- ['trytond.modules.edocument_uncefact'] +
- ['trytond.modules.edocument_uncefact.%s' % p for p in find_packages()]
+ ['trytond.modules.edocument_uncefact']
+ + ['trytond.modules.edocument_uncefact.%s' % p
+ for p in find_packages()]
),
package_data={
'trytond.modules.edocument_uncefact': (info.get('xml', [])
@@ -98,7 +99,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 a6d84d0aba4e -r 18d08f4df8f9 tests/__init__.py
--- a/tests/__init__.py Wed Dec 04 11:09:35 2019 +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.edocument_uncefact.tests.test_edocument_uncefact
import suite
+ from trytond.modules.edocument_uncefact.tests.test_edocument_uncefact
import suite # noqa: E501
except ImportError:
from .test_edocument_uncefact import suite