Remove N536 ignore in tox.ini

Seems we already comply, so don't ignore.

Change-Id: I5c6b1800105aa2f78577d0b5383905064e06fb7f
This commit is contained in:
Brian Haley 2018-04-25 17:32:09 -04:00
parent c4bfd0e0f2
commit f38b7b9dca
1 changed files with 1 additions and 2 deletions

View File

@ -144,10 +144,9 @@ commands = sphinx-build -W -b linkcheck doc/source doc/build/linkcheck
# N530 direct neutron imports not allowed
# TODO(ihrachys) figure out what to do with N534 and N536
# N534 Untranslated exception message
# N536 Use assertIsNone rather than assertEqual to check for None values
# TODO(amotoki) check the following new rules should be fixed or ignored
# E731 do not assign a lambda expression, use a def
ignore = E125,E126,E128,E129,E265,E731,H404,H405,N530,N534,N536
ignore = E125,E126,E128,E129,E265,E731,H404,H405,N530,N534
# H106: Don't put vim configuration in source files
# H203: Use assertIs(Not)None to check for None
# H204: Use assert(Not)Equal to check for equality