Merge "Remove unused logging import"

This commit is contained in:
Jenkins 2017-07-11 08:34:32 +00:00 committed by Gerrit Code Review
commit 65bd940498
2 changed files with 0 additions and 7 deletions

View File

@ -16,10 +16,6 @@ import abc
import six
from ooi.log import log as logging
LOG = logging.getLogger(__name__)
@six.add_metaclass(abc.ABCMeta)
class Controller(object):

View File

@ -14,11 +14,8 @@
from ooi.api import helpers
from ooi import exception
from ooi.log import log as logging
from ooi.openstack import helpers as os_helpers
LOG = logging.getLogger(__name__)
class OpenStackNeutron(helpers.BaseHelper):
"""Class to interact with the neutron API."""