From f68986117bfd017c43c1ff06d4de20f71f8e0709 Mon Sep 17 00:00:00 2001 From: Thor77 Date: Sun, 19 Feb 2017 17:14:49 +0100 Subject: [PATCH] Use flake8 instead of pyflakes for additional pep8-checks --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 37a07d9..86e4861 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,10 +8,10 @@ matrix: include: - python: 2.7 install: - - pip install pyflakes + - pip install flake8 - pip install isort script: - - pyflakes tsstats/**/*.py + - flake8 tsstats/**/*.py - isort -c tsstats/**/*.py install: