Ignore multiple imports per line for six.moves

In the transition to Python3 we'll be heavily using six.move to import
builtins that have changed and modules that have moved. Having them all
on one line will, in many cases, make the code look cleaner. There is
exactly what we already do with the i18n translation helpers.

bp python3
Change-Id: I5c56a1cf36749d9f190e4360d5a12616380b6598
This commit is contained in:
David Stanek 2015-04-23 15:04:23 +00:00
parent ad9a4abe2c
commit f599a768fd

View File

@ -121,4 +121,5 @@ commands = bandit -c bandit.yaml -r keystone -n5 -p keystone_conservative
[hacking]
import_exceptions =
keystone.i18n
six.moves
local-check-factory = keystone.hacking.checks.factory