From b1fc7d95041291a84e30bd61fb16c6bde019dd4f Mon Sep 17 00:00:00 2001 From: Daniel <d.hornung@indiscale.com> Date: Thu, 3 Mar 2022 19:07:51 +0100 Subject: [PATCH] MAINT: Maximum line length increased to 100. --- Makefile | 2 +- tox.ini | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9689f1e..d81534b 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,7 @@ help: # Run the tests through autopep8. autopep8: - autopep8 -ri tests + autopep8 -ri . # Meta target to call the other targets. all: autopep8 test diff --git a/tox.ini b/tox.ini index 26c5d15..6fe26a7 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,10 @@ [tox] envlist=py36, py37, py38, py39 skip_missing_interpreters = true + +[pycodestyle] +max_line_length = 100 + [testenv] setenv = PASSWORD_STORE_DIR = {env:HOME}/.password-store passenv = PYCAOSDBINI -- GitLab