tox.ini: add missing comments for H204 and H205

TrivialFix

Change-Id: I9c006c2a943c45dd2dd6a9035a859335d6bbf0ce
This commit is contained in:
Hunt Xu 2018-02-08 19:22:22 +08:00
parent a229b4f135
commit 113a29b17c
1 changed files with 2 additions and 0 deletions

View File

@ -60,5 +60,7 @@ builtins = _
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,tools,build,example
# 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
# H205: Use assert(Greater|Less)(Equal) for comparison
# H904: Delay string interpolations at logging calls
enable-extensions=H106,H203,H204,H205,H904