Remove unused logging import

Change-Id: I897c47758f38c935572d19440eb7f54840a13f81
This commit is contained in:
Kiran_totad 2017-07-05 16:40:45 +05:30 committed by Kiran Totad
parent 4923182db3
commit 51a1d47ec4
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."""