Merge "remove unused LOG"

This commit is contained in:
Jenkins 2016-07-11 08:05:39 +00:00 committed by Gerrit Code Review
commit 74a259ce3b
2 changed files with 0 additions and 6 deletions

View File

@ -16,7 +16,6 @@
import json
from oslo_config import cfg
from oslo_log import log
import six
from swiftclient import client as swift_client
from swiftclient import exceptions as swift_exceptions
@ -28,8 +27,6 @@ from ironic_inspector import utils
CONF = cfg.CONF
LOG = log.getLogger('ironic_inspector.common.swift')
SWIFT_GROUP = 'swift'
SWIFT_OPTS = [
cfg.IntOpt('max_retries',

View File

@ -23,9 +23,6 @@ from ironic_inspector.plugins import base
from ironic_inspector import utils
LOG = utils.getProcessingLogger(__name__)
def coerce(value, expected):
if isinstance(expected, float):
return float(value)