mirror of
https://gitlab.com/datalifeit/trytond-account_eu
synced 2023-12-14 06:22:54 +01:00
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
This commit is contained in:
parent
b4861a2010
commit
b454f63253
2 changed files with 6 additions and 3 deletions
2
.flake8
Normal file
2
.flake8
Normal file
|
@ -0,0 +1,2 @@
|
|||
[flake8]
|
||||
ignore=E123,E124,E126,E128,W503
|
7
setup.py
7
setup.py
|
@ -79,8 +79,8 @@ setup(name=name,
|
|||
keywords='tryton account europe vat',
|
||||
package_dir={'trytond.modules.account_eu': '.'},
|
||||
packages=(
|
||||
['trytond.modules.account_eu'] +
|
||||
['trytond.modules.account_eu.%s' % p for p in find_packages()]
|
||||
['trytond.modules.account_eu']
|
||||
+ ['trytond.modules.account_eu.%s' % p for p in find_packages()]
|
||||
),
|
||||
package_data={
|
||||
'trytond.modules.account_eu': (info.get('xml', [])
|
||||
|
@ -94,7 +94,8 @@ setup(name=name,
|
|||
'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',
|
||||
|
|
Loading…
Reference in a new issue