From e74582e059f8242c2a8c63a3b694ec61e5accb2e Mon Sep 17 00:00:00 2001 From: Tristan Van Berkom Date: Sat, 10 Dec 2016 14:22:17 +0900 Subject: setup.cfg: Ignore pep8 error 129 This is just an annoyance, as mentioned here: https://github.com/PyCQA/pycodestyle/issues/386 This error was explicitly split out from error 125 so that it could safely be ignored. --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index cef5bdf05..6a3e0679e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,3 +4,4 @@ test=pytest [tool:pytest] addopts = --verbose --basetemp ./tmp --pep8 python_files = tests/*/*.py +pep8ignore = E129 -- cgit v1.2.1