changeset c856edd6f977 in modules/account_statement_ofx:default
details:
https://hg.tryton.org/modules/account_statement_ofx?cmd=changeset;node=c856edd6f977
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 | 9 +++++----
tests/__init__.py | 2 +-
3 files changed, 8 insertions(+), 5 deletions(-)
diffs (48 lines):
diff -r 91468eba7c56 -r c856edd6f977 .flake8
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/.flake8 Sun Mar 01 12:33:51 2020 +0100
@@ -0,0 +1,2 @@
+[flake8]
+ignore=E123,E124,E126,E128,W503
diff -r 91468eba7c56 -r c856edd6f977 setup.py
--- a/setup.py Fri Jan 10 17:01:28 2020 +0100
+++ b/setup.py Sun Mar 01 12:33:51 2020 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
@@ -79,8 +79,8 @@
keywords='tryton account statement OFX QFX',
package_dir={'trytond.modules.account_statement_ofx': '.'},
packages=(
- ['trytond.modules.account_statement_ofx'] +
- ['trytond.modules.account_statement_ofx.%s' % p
+ ['trytond.modules.account_statement_ofx']
+ + ['trytond.modules.account_statement_ofx.%s' % p
for p in find_packages()]
),
package_data={
@@ -95,7 +95,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 :: Czech',
diff -r 91468eba7c56 -r c856edd6f977 tests/__init__.py
--- a/tests/__init__.py Fri Jan 10 17:01:28 2020 +0100
+++ b/tests/__init__.py Sun Mar 01 12:33:51 2020 +0100
@@ -2,7 +2,7 @@
# this repository contains the full copyright notices and license terms.
try:
- from
trytond.modules.account_statement_ofx.tests.test_account_statement_ofx import
suite
+ from
trytond.modules.account_statement_ofx.tests.test_account_statement_ofx import
suite # noqa: E501
except ImportError:
from .test_account_statement_ofx import suite