From 959d94021d3c5b88cb507b6d86d90093003b722a Mon Sep 17 00:00:00 2001 From: Paul F Bugni Date: Mon, 13 Jan 2025 21:21:41 -0800 Subject: [PATCH] flake8 apparently looks in `tox.ini` before `pyproject.toml` for max-line-length --- pyproject.toml | 3 --- tox.ini | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b4fc5bf7..9db5c12a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,9 +28,6 @@ dev = [ [tool.setuptools] packages = ["patientsearch"] -[tool.flake8] -max-line-length = 100 - [tool.pytest.ini_options] addopts = "--color yes --verbose" console_output_style = "classic" diff --git a/tox.ini b/tox.ini index 46c1ac79..59cc7f85 100644 --- a/tox.ini +++ b/tox.ini @@ -21,3 +21,6 @@ commands = --cov patientsearch \ --cov-report xml:"{toxinidir}/coverage.xml" \ [] + +[flake8] +max-line-length = 100