Remove noqa form import _s

Some files had noqa on the import _ line. This isn't necessary
so remove it.

Change-Id: Ic9784f2fda7fbe2595b3a85535bf815ecd10dfff
This commit is contained in:
Brant Knudson 2014-03-27 14:43:00 -05:00
parent 0a1cb0e202
commit d6d40b0e44
3 changed files with 4 additions and 3 deletions

View File

@ -27,7 +27,7 @@ See also:
import six
from keystone import notifications
from keystone.openstack.common.gettextutils import _ # flake8: noqa
from keystone.openstack.common.gettextutils import _
REGISTRY = {}
@ -269,6 +269,7 @@ def resolve_future_dependencies(provider_name=None):
_future_dependencies.clear()
return new_providers
def reset():
"""Reset the registry of providers.

View File

@ -28,7 +28,7 @@ import six
from keystone.common import config
from keystone import exception
from keystone.openstack.common.gettextutils import _ # flake8: noqa
from keystone.openstack.common.gettextutils import _
from keystone.openstack.common import importutils
from keystone.openstack.common import log

View File

@ -15,7 +15,7 @@
import six
from keystone.common import config
from keystone.openstack.common.gettextutils import _ # flake8: noqa
from keystone.openstack.common.gettextutils import _
from keystone.openstack.common import log
from keystone.openstack.common import strutils