changeset 1d827126d639 in proteus:default
details: https://hg.tryton.org/proteus?cmd=changeset;node=1d827126d639
description:
        Correctly ignore E402 flake8 error
diffstat:

 proteus/tests/__init__.py |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (14 lines):

diff -r 16eab70093ec -r 1d827126d639 proteus/tests/__init__.py
--- a/proteus/tests/__init__.py Mon Nov 02 15:39:04 2020 +0100
+++ b/proteus/tests/__init__.py Sun Nov 15 18:17:53 2020 +0100
@@ -10,8 +10,8 @@
 
 os.environ.setdefault('TRYTOND_DATABASE_URI', 'sqlite:///:memory:')
 os.environ.setdefault('DB_NAME', ':memory:')
-from trytond.tests.test_tryton import (
-    doctest_setup, doctest_teardown)  # noqa: E402
+from trytond.tests.test_tryton import (  # noqa: E402
+    doctest_setup, doctest_teardown)
 
 here = os.path.dirname(__file__)
 readme = os.path.normpath(os.path.join(here, '..', '..', 'README'))

Reply via email to