pep8: Use default line width

We can use the default value by fixing the only one error.

test/test_pyeclib_api.py:111:80: E501 line too long (83 > 79 characters)

Change-Id: Idcdd6f643330b76328b5cd28c32900eeceacafb8
This commit is contained in:
Takashi Kajinami 2024-01-26 01:45:51 +09:00
parent eca7e3605e
commit bed3b55540
2 changed files with 2 additions and 2 deletions

View File

@ -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()

View File

@ -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