changeset 50ac4b75d361 in modules/account_invoice_correction:default
details: 
https://hg.tryton.org/modules/account_invoice_correction?cmd=changeset;node=50ac4b75d361
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 ++
 invoice.py |  2 --
 setup.py   |  7 ++++---
 3 files changed, 6 insertions(+), 5 deletions(-)

diffs (42 lines):

diff -r 055f16581fa9 -r 50ac4b75d361 .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 055f16581fa9 -r 50ac4b75d361 invoice.py
--- a/invoice.py        Wed Dec 04 11:09:35 2019 +0100
+++ b/invoice.py        Sun Mar 01 12:33:51 2020 +0100
@@ -7,8 +7,6 @@
 from trytond.pyson import Eval
 from trytond.transaction import Transaction
 
-__all__ = ['Invoice', 'InvoiceCorrectStart', 'InvoiceCorrect']
-
 
 class Invoice(metaclass=PoolMeta):
     __name__ = 'account.invoice'
diff -r 055f16581fa9 -r 50ac4b75d361 setup.py
--- a/setup.py  Wed Dec 04 11:09:35 2019 +0100
+++ b/setup.py  Sun Mar 01 12:33:51 2020 +0100
@@ -80,8 +80,8 @@
     keywords='tryton invoice correction',
     package_dir={'trytond.modules.account_invoice_correction': '.'},
     packages=(
-        ['trytond.modules.account_invoice_correction'] +
-        ['trytond.modules.account_invoice_correction.%s' % p
+        ['trytond.modules.account_invoice_correction']
+        + ['trytond.modules.account_invoice_correction.%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 :: Chinese (Simplified)',

Reply via email to