Remove unused imports.

This commit is contained in:
Alberto Planas 2014-07-07 13:02:48 +02:00
parent 954a1d8260
commit d3d702fc2a
3 changed files with 0 additions and 9 deletions

View File

@ -18,7 +18,6 @@ _plugin_dir = os.path.expanduser('~/.osc-plugins')
sys.path.append(_plugin_dir)
from osclib.stagingapi import StagingAPI
from osclib.request_finder import RequestFinder
from osclib.select_command import SelectCommand
from osclib.unselect_command import UnselectCommand
from osclib.accept_command import AcceptCommand
@ -26,7 +25,6 @@ from osclib.cleanup_rings import CleanupRings
from osclib.list_command import ListCommand
from osclib.freeze_command import FreezeCommand
from osclib.check_command import CheckCommand
from osclib.comments import CommentAPI
OSC_STAGING_VERSION = '0.0.1'

View File

@ -1,9 +1,3 @@
from xml.etree import cElementTree as ET
from osc.core import makeurl
from osc.core import http_GET
class CheckCommand(object):
def __init__(self, api):
self.api = api

View File

@ -16,7 +16,6 @@
from collections import defaultdict
import os
import shutil
import subprocess
from urllib import quote_plus
import urllib2