From a9adca02dbdbf786dd7015f4d3c67c514d757423 Mon Sep 17 00:00:00 2001 From: Navid Pustchi Date: Tue, 3 May 2016 18:08:31 +0000 Subject: Fixing D204, D205, and D207 PEP257 violation. Currently tox ignores D204, D205, and D207. D204: 1 blank required after class docstring. D205: Blank line required between one-line summary and description. D207: Docstring is under-indented. This change removes D204, D205, and D207 ignores in tox and fix violations. Change-Id: Id20d216fbd7647d468859b960088aac61c582d9b --- tox.ini | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index 16d7a5f..cd26e8f 100644 --- a/tox.ini +++ b/tox.ini @@ -49,10 +49,7 @@ passenv = OS_* # D200: One-line docstring should fit on one line with quotes # D202: No blank lines allowed after function docstring # D203: 1 blank required before class docstring. -# D204: 1 blank required after class docstring -# D205: Blank line required between one-line summary and description. -# D207: Docstring is under-indented -ignore = D100,D101,D102,D103,D104,D105,D200,D202,D203,D204,D205,D207 +ignore = D100,D101,D102,D103,D104,D105,D200,D202,D203 show-source = True exclude = .venv,.tox,dist,doc,*egg,build,*openstack/common* -- cgit v1.2.1