From: Josh Durgin Date: Wed, 15 Jun 2011 22:22:12 +0000 (-0700) Subject: Remove unused imports and variable. X-Git-Tag: v0.94.10~27^2^2~364^2~1731 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=98a8071935992ee935c2f23337e9a6c3fcd0e323;p=ceph.git Remove unused imports and variable. --- diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index 2830d934131..f0a388fb5cc 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -5,7 +5,6 @@ import logging import os import gevent import tarfile -import yaml from teuthology import misc as teuthology from teuthology import safepath diff --git a/teuthology/task/radosbench.py b/teuthology/task/radosbench.py index afa40cc17f5..476060ff171 100644 --- a/teuthology/task/radosbench.py +++ b/teuthology/task/radosbench.py @@ -1,8 +1,6 @@ import contextlib import logging -import os -from teuthology import misc as teuthology from orchestra import run log = logging.getLogger(__name__) @@ -33,7 +31,6 @@ def task(ctx, config): radosbench = {} (mon,) = ctx.cluster.only('mon.0').remotes.iterkeys() - remotes = [] for role in config.get('clients', ['client.0']): assert isinstance(role, basestring) PREFIX = 'client.' diff --git a/teuthology/task/testsnaps.py b/teuthology/task/testsnaps.py index 024a017eb34..83a8a1ad419 100644 --- a/teuthology/task/testsnaps.py +++ b/teuthology/task/testsnaps.py @@ -1,8 +1,6 @@ import contextlib import logging -import os -from teuthology import misc as teuthology from orchestra import run log = logging.getLogger(__name__)