changeset 75b5b2de489a in modules/product_price_list_dates:default
details: 
https://hg.tryton.org/modules/product_price_list_dates?cmd=changeset;node=75b5b2de489a
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 ++
 product.py        |  2 --
 sale.py           |  2 --
 setup.py          |  7 ++++---
 tests/__init__.py |  2 +-
 5 files changed, 7 insertions(+), 8 deletions(-)

diffs (66 lines):

diff -r db1114768795 -r 75b5b2de489a .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 db1114768795 -r 75b5b2de489a product.py
--- a/product.py        Sun Feb 23 13:55:00 2020 +0100
+++ b/product.py        Sun Mar 01 12:33:52 2020 +0100
@@ -4,8 +4,6 @@
 from trytond.pool import PoolMeta, Pool
 from trytond.pyson import Eval, If
 
-__all__ = ['PriceList', 'PriceListLine', 'PriceListLineContext']
-
 
 class PriceList(metaclass=PoolMeta):
     __name__ = 'product.price_list'
diff -r db1114768795 -r 75b5b2de489a sale.py
--- a/sale.py   Sun Feb 23 13:55:00 2020 +0100
+++ b/sale.py   Sun Mar 01 12:33:52 2020 +0100
@@ -4,8 +4,6 @@
 from trytond.pool import PoolMeta
 from trytond.pyson import Eval
 
-__all__ = ['Line']
-
 
 class Line(metaclass=PoolMeta):
     __name__ = 'sale.line'
diff -r db1114768795 -r 75b5b2de489a setup.py
--- a/setup.py  Sun Feb 23 13:55:00 2020 +0100
+++ b/setup.py  Sun Mar 01 12:33:52 2020 +0100
@@ -80,8 +80,8 @@
     keywords='tryton price list',
     package_dir={'trytond.modules.product_price_list_dates': '.'},
     packages=(
-        ['trytond.modules.product_price_list_dates'] +
-        ['trytond.modules.product_price_list_dates.%s' % p
+        ['trytond.modules.product_price_list_dates']
+        + ['trytond.modules.product_price_list_dates.%s' % p
             for p in find_packages()]
         ),
     package_data={
@@ -96,7 +96,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 db1114768795 -r 75b5b2de489a tests/__init__.py
--- a/tests/__init__.py Sun Feb 23 13:55:00 2020 +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.product_price_list_dates.tests.test_product_price_list_dates 
import suite
+    from 
trytond.modules.product_price_list_dates.tests.test_product_price_list_dates 
import suite  # noqa: E501
 except ImportError:
     from .test_product_price_list_dates import suite
 

Reply via email to