From 113a29b17c93b017cbe8b3d4ee9a34934b0d6ef6 Mon Sep 17 00:00:00 2001 From: Hunt Xu Date: Thu, 8 Feb 2018 19:22:22 +0800 Subject: [PATCH] tox.ini: add missing comments for H204 and H205 TrivialFix Change-Id: I9c006c2a943c45dd2dd6a9035a859335d6bbf0ce --- tox.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tox.ini b/tox.ini index af53fd72..17d6bef3 100644 --- a/tox.ini +++ b/tox.ini @@ -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