Remove N531 from pep8 ignore list

Since neutron_lib has evolved, this could be removed.

Change-Id: I799fdb1923ae99c4d57e3618726cc65c3a27baa2
This commit is contained in:
Hong Hui Xiao 2017-04-13 08:33:36 +08:00
parent 7b174c1deb
commit 37b941da0f
1 changed files with 1 additions and 2 deletions

View File

@ -51,8 +51,7 @@ commands = sphinx-build -a -E -W -d doc/build/doctrees -b html doc/source doc/bu
# H404 multi line docstring should start with a summary
# H405 multi line docstring summary not separated with an empty line
# N530 Direct neutron imports not allowed
# N531 log message does not translate
ignore = E126,H404,H405,N530,N531
ignore = E126,H404,H405,N530
# H904: Delay string interpolations at logging calls
# H203: Use assertIs(Not)None to check for None
enable-extensions=H904,H203