From b5c72da91817fb50d276e22a0c708dc326fb5b3e Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sat, 11 Feb 2017 08:15:02 -0600 Subject: [PATCH] prospector: disable PEP257 D203 for whatever reason both it and D211 exist, and i'm choosing D211 bss/dr.botzo#17 --- .prospector.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.prospector.yaml b/.prospector.yaml index 4dcd596..e79b751 100644 --- a/.prospector.yaml +++ b/.prospector.yaml @@ -15,3 +15,6 @@ pylint: pep8: options: max-line-length: 120 +pep257: + disable: + - D203