Merge "pep8: Use default line width"

This commit is contained in:
Zuul 2024-01-25 18:28:21 +00:00 committed by Gerrit Code Review
commit 084a835fac
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