From 9018e796bbeb815c6f44d5275dbe00b18127a464 Mon Sep 17 00:00:00 2001 From: Adam Smith Date: Thu, 23 Nov 2017 22:17:50 -0800 Subject: [PATCH] migrate from pep8 to pycodestyle #152 --- script/lint | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/script/lint b/script/lint index 91e6d60..431ac4e 100755 --- a/script/lint +++ b/script/lint @@ -17,5 +17,5 @@ fi SOURCES="*.py octodns/*.py octodns/*/*.py tests/*.py" -pep8 --ignore=E221,E241,E251 $SOURCES +pycodestyle --ignore=E221,E241,E251,E722 $SOURCES pyflakes $SOURCES diff --git a/setup.cfg b/setup.cfg index 54e9014..31a0283 100644 --- a/setup.cfg +++ b/setup.cfg @@ -62,7 +62,7 @@ test = coverage mock nose - pep8 + pycodestyle pyflakes requests_mock setuptools>=36.4.0