From 835792e8fa8202c1d1104dec59bd08b3c201d1a9 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 11 Aug 2019 10:08:00 +0200 Subject: flake8: Turn off pydocstyle D412 --- .flake8 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.flake8') diff --git a/.flake8 b/.flake8 index d9c9c44d9..e913647f9 100644 --- a/.flake8 +++ b/.flake8 @@ -33,6 +33,8 @@ exclude = .*,__pycache__,resources.py # D402: First line should not be function's signature (false-positives) # D403: First word of the first line should be properly capitalized # (false-positives) +# D412: No blank lines allowed between a section header and its content +# (numpy-style) # D413: Missing blank line after last section (not in pep257?) # A003: Builtin name for class attribute (needed for overridden methods) # W504: line break after binary operator @@ -42,7 +44,7 @@ ignore = F401, N802, P101,P102,P103, - D102,D103,D106,D107,D104,D105,D209,D211,D401,D402,D403,D413, + D102,D103,D106,D107,D104,D105,D209,D211,D401,D402,D403,D412,D413, A003, W504 min-version = 3.4.0 -- cgit v1.2.3-54-g00ecf