# HG changeset patch # User Denis Laxalde # Date 1509350915 -3600 # Node ID 4b5f1b6763664f063d15e96e1da550a5e7b8271e # Parent d3f3c4a4edd9ee2d23f8177460178d6806f396a1 [dataimport/test] Ignore flake8 error E741 in test_pgstore.py This error is about "l" being an ambiguous variable name. Here, it's arguably acceptable. diff -r d3f3c4a4edd9 -r 4b5f1b676366 cubicweb/dataimport/test/test_pgstore.py --- a/cubicweb/dataimport/test/test_pgstore.py Mon Oct 30 09:18:20 2017 +0100 +++ b/cubicweb/dataimport/test/test_pgstore.py Mon Oct 30 09:08:35 2017 +0100 @@ -66,7 +66,7 @@ # test buffer def test_create_copyfrom_buffer_tuple(self): - l = long if PY2 else int + l = long if PY2 else int # noqa: E741 data = ((42, l(42), 42.42, u'éléphant', DT.date(666, 1, 13), DT.time(6, 6, 6), DT.datetime(666, 6, 13, 6, 6, 6)), (6, l(6), 6.6, u'babar', DT.date(2014, 1, 14), DT.time(4, 2, 1),