From c269a9debc36ab5ac692a12b048ab57f26f48317 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 12 Jun 2025 22:52:11 +0900 Subject: [PATCH] Extend max line length The existing code does not expect 79 characters limit. Extend the limit to avoid mass update. --- tox.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tox.ini b/tox.ini index 3d175eb..a7c6534 100644 --- a/tox.ini +++ b/tox.ini @@ -15,3 +15,6 @@ deps = -r{toxinidir}/test-requirements.txt [testenv:pep8] commands = flake8 deps = flake8 + +[flake8] +max-line-length = 160