From 62aaca36afe6bdae28e8e7e42806e537311c1554 Mon Sep 17 00:00:00 2001 From: Tom Cocozzello Date: Tue, 4 Aug 2015 11:03:47 -0500 Subject: [PATCH] Activate pep8 check that _ is imported Remove the specification in tox.ini that _ is a builtin so that it will no longer assume that _ does not need to be imported. This helps ensure that the _ from i18n is used. Activating this check did not flag any violations. Change-Id: I3859d14cdc68e8559679e2707af0fe4254f8550c --- tox.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/tox.ini b/tox.ini index b35bdc9..711b457 100644 --- a/tox.ini +++ b/tox.ini @@ -32,5 +32,4 @@ commands = python setup.py build_sphinx [flake8] show-source = true ignore = H101,H302,H803 -builtins = _ exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,tools,local_settings.py