changeset 43b1d24fed58 in modules/purchase_requisition:default
details: 
https://hg.tryton.org/modules/purchase_requisition?cmd=changeset;node=43b1d24fed58
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 |  4 ++--
 2 files changed, 4 insertions(+), 2 deletions(-)

diffs (20 lines):

diff -r 6925a51bf432 -r 43b1d24fed58 .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 6925a51bf432 -r 43b1d24fed58 setup.py
--- a/setup.py  Sat Jan 25 20:18:49 2020 +0100
+++ b/setup.py  Sun Mar 01 12:33:53 2020 +0100
@@ -81,8 +81,8 @@
     keywords='tryton purchase requisition',
     package_dir={'trytond.modules.purchase_requisition': '.'},
     packages=(
-        ['trytond.modules.purchase_requisition'] +
-        ['trytond.modules.purchase_requisition.%s' % p
+        ['trytond.modules.purchase_requisition']
+        + ['trytond.modules.purchase_requisition.%s' % p
             for p in find_packages()]
         ),
     package_data={

Reply via email to