From c3dd5349c7f95aced3b8032e2577c5d137696957 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Sat, 15 Jul 2017 07:23:06 -0500 Subject: [PATCH] STYLE: Ignore some pycodestyle errors --- setup.cfg | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.cfg b/setup.cfg index 05d4c84ca56c4..dd62716f53d83 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,6 +15,10 @@ parentdir_prefix = pandas- ignore = E731,E402 max-line-length = 79 +[pycodestyle] +ignore = E731,E402,E722,E741 +max-line-length = 79 + [yapf] based_on_style = pep8 split_before_named_assigns = false