diff --git a/test/test_pyeclib_api.py b/test/test_pyeclib_api.py index 1663920..3268582 100644 --- a/test/test_pyeclib_api.py +++ b/test/test_pyeclib_api.py @@ -108,7 +108,8 @@ class TestPyECLibDriver(unittest.TestCase): size *= 1000 # Create the dictionary of files to test with - buf = ''.join(random.choice(string.ascii_letters) for i in range(size)) + buf = ''.join(random.choice(string.ascii_letters) + for i in range(size)) if sys.version_info >= (3,): buf = buf.encode('ascii') tmp_file = tempfile.NamedTemporaryFile() diff --git a/tox.ini b/tox.ini index 4185083..05d2d18 100644 --- a/tox.ini +++ b/tox.ini @@ -39,4 +39,3 @@ commands = python setup.py build_sphinx # H405: multi line docstring summary not separated with an empty line # W504: line break after binary operator ignore = H101,H404,H405,W504 -max-line-length = 88