From 4596272f1771624bfdc1ef38451a97daa9f729e8 Mon Sep 17 00:00:00 2001 From: James Carey Date: Thu, 23 Jul 2015 21:55:18 +0000 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: I1ec3f55d415b774ab64018d40b4b138e8eee8ee3 --- tox.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/tox.ini b/tox.ini index 7583121a..d72cba63 100644 --- a/tox.ini +++ b/tox.ini @@ -33,7 +33,6 @@ commands = python setup.py testr --coverage --testr-args='{posargs}' show-source = True ignore = E123,E125 -builtins = _ exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build [hacking]