From 552ca50855ee27f6660e6ca921241d6656e5774d Mon Sep 17 00:00:00 2001 From: David Read Date: Fri, 1 Feb 2019 11:02:55 +0000 Subject: [PATCH] Flake8 can ignore this imported code - a minor issue is flagged with it since the release of flake8 3.7.0 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 514f2fa3405..6f1ea86126a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,7 +36,7 @@ matrix: before_script: - flake8 --version # stop the build if there are Python syntax errors or undefined names - - flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics + - flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics --exclude ./ckan/include/rjsmin.py # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics script: