From bca112c8ba5636becd6951fbfb8cb8f2474279fe Mon Sep 17 00:00:00 2001 From: Navid Pustchi Date: Tue, 3 May 2016 18:54:12 +0000 Subject: Fixing D202 and D203 PEP257 violation. Currently tox ignores D202 and D203. D202: No blank lines allowed after function docstring. D203: 1 blank required before class docstring. This change removes D202 and D203 ignores in tox and fix violations. Change-Id: I97ef88c9cfd56774e47f789cbbcf8ccfe85d7737 --- tox.ini | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index cd26e8f..9dd6687 100644 --- a/tox.ini +++ b/tox.ini @@ -47,9 +47,7 @@ passenv = OS_* # D104: Missing docstring in public package # D105: Missing docstring in magic method # 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. -ignore = D100,D101,D102,D103,D104,D105,D200,D202,D203 +ignore = D100,D101,D102,D103,D104,D105,D200 show-source = True exclude = .venv,.tox,dist,doc,*egg,build,*openstack/common* -- cgit v1.2.1