From 8d8b616b524ce05b18f99691b190e23f7abee595 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sun, 1 Apr 2018 08:41:01 +1000 Subject: [PATCH] pylint: fixes --- .pylintrc | 3 +++ .travis.yml | 3 +-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.pylintrc b/.pylintrc index 8d4e0ae..e41fb8c 100644 --- a/.pylintrc +++ b/.pylintrc @@ -7,6 +7,9 @@ good-names=i,j,k,n,x,y,fg,bg,r,g,b,i3,r1,r2,r3,g1,g2,g3,b1,b2,b3,h,s,v # too-many-branches: # Disabled as it's a non-issue and only occurs in the # process_args() function. +# too-many-statements: +# Disabled as it's a non-issue and only occurs in the +# process_args() function. disable=inconsistent-return-statements,too-many-branches,too-many-statements [SIMILARITIES] diff --git a/.travis.yml b/.travis.yml index 4f54fe7..11a9bfd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,13 +7,12 @@ matrix: - os: linux python: 3.6 - before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y imagemagick; fi install: - - pip install flake8 pylint colorthief + - pip install flake8 pylint script: - flake8 pywal tests setup.py