From ef42c0f0dec044543b0698aa24709b9c2ed847e7 Mon Sep 17 00:00:00 2001 From: John Dickinson Date: Fri, 15 Nov 2013 15:10:39 -0800 Subject: [PATCH] allow bare excepts in flake8 Change-Id: I4751f9f65712960019f9a303b7d7fe017c6e85c7 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 8d971f8d72..7626a3dbee 100644 --- a/tox.ini +++ b/tox.ini @@ -37,6 +37,6 @@ commands = {posargs} [flake8] # TODO(dmllr): Review some of the hacking warnings and fix if applicable # H233 Use print function, not print operator -ignore = H203,H233,H301,H302,H306,H402,H404,H703 +ignore = H203,H233,H301,H302,H306,H402,H404,H703,H201 exclude = .venv,.tox,dist,doc,*egg show-source = True