From eda1e62b8b840482345e871d71323d4741304eb4 Mon Sep 17 00:00:00 2001 From: Robin Getz Date: Mon, 18 May 2020 17:35:03 -0400 Subject: [PATCH] pep257: turn off D402 checking Turn off: First line should not be the function's "signature" (D402) as it weirdly interacts with Multi-line docstring summary should start at the second line (D213) Signed-off-by: Robin Getz --- .prospector.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.prospector.yml b/.prospector.yml index 9cc78f6ec..9abe23fe0 100644 --- a/.prospector.yml +++ b/.prospector.yml @@ -35,4 +35,6 @@ pep257: disable: [ D203, # 1 blank line required before class docstring # conflicts with D0211, No blank lines allowed before class docstring + D402, # First line should not be the function's "signature" + # conflicts with D213, Multi-line docstring summary should start at the second line ]