Cleanup unused conf variables

I noticed in nova that we had a lot of unused conf variables. I
wondered if this was a thing in other projects as well. Turns out
it is.

Change-Id: Id0bee1b96d005b8fa9a9ee07f7bdbf73515811ce
This commit is contained in:
Michael Still 2016-02-16 16:28:25 +11:00
parent fa7e2f0482
commit 7e6a2e81e0
2 changed files with 0 additions and 6 deletions

View File

@ -24,7 +24,6 @@ import uuid
import mock
import netaddr
from oslo_concurrency import processutils
from oslo_config import cfg
import six
import six.moves.builtins as __builtin__
@ -32,8 +31,6 @@ from magnum.common import exception
from magnum.common import utils
from magnum.tests import base
CONF = cfg.CONF
class UtilsTestCase(base.TestCase):

View File

@ -14,7 +14,6 @@
import docker
from docker import errors
import mock
from oslo_config import cfg
import six
from magnum.common import docker_utils
@ -24,8 +23,6 @@ from magnum import objects
from magnum.objects import fields
from magnum.tests import base
CONF = cfg.CONF
class TestDockerHandler(base.BaseTestCase):
def setUp(self):