Get rid of unused imports
This cruft just tends to build up over time... Change-Id: I61fd067b431aaa57164c7ff781c9cc8bab04bd4b Signed-off-by: Zane Bitter <zbitter@redhat.com>
This commit is contained in:
parent
b9e5bcb689
commit
f531f6fb28
@ -26,7 +26,6 @@ import os
|
|||||||
import os.path
|
import os.path
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
import json
|
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
import httplib
|
import httplib
|
||||||
|
@ -26,10 +26,8 @@ import os
|
|||||||
import os.path
|
import os.path
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
import json
|
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from urlparse import urlparse
|
|
||||||
# If ../heat/__init__.py exists, add ../ to Python search path, so that
|
# If ../heat/__init__.py exists, add ../ to Python search path, so that
|
||||||
# it will override what happens to be installed in /usr/(local/)lib/python...
|
# it will override what happens to be installed in /usr/(local/)lib/python...
|
||||||
possible_topdir = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]),
|
possible_topdir = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]),
|
||||||
|
@ -13,12 +13,9 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
from webob.exc import Response
|
|
||||||
|
|
||||||
from heat.common import wsgi
|
from heat.common import wsgi
|
||||||
from heat.common import context
|
from heat.common import context
|
||||||
from heat.rpc import client as rpc_client
|
from heat.rpc import client as rpc_client
|
||||||
from heat.openstack.common import rpc
|
|
||||||
from heat.common import identifier
|
from heat.common import identifier
|
||||||
from heat.api.aws import exception
|
from heat.api.aws import exception
|
||||||
import heat.openstack.common.rpc.common as rpc_common
|
import heat.openstack.common.rpc.common as rpc_common
|
||||||
|
@ -21,7 +21,6 @@ from heat.openstack.common import log as logging
|
|||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
from boto.cloudformation import CloudFormationConnection
|
from boto.cloudformation import CloudFormationConnection
|
||||||
import json
|
|
||||||
|
|
||||||
|
|
||||||
class BotoClient(CloudFormationConnection):
|
class BotoClient(CloudFormationConnection):
|
||||||
|
@ -18,8 +18,6 @@ Client classes for callers of a heat system
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
from lxml import etree
|
from lxml import etree
|
||||||
import os
|
|
||||||
import json
|
|
||||||
from heat.common import client as base_client
|
from heat.common import client as base_client
|
||||||
from heat.common import exception
|
from heat.common import exception
|
||||||
|
|
||||||
|
@ -20,8 +20,6 @@ Utility for fetching a resource (e.g. a template) from a URL.
|
|||||||
import urllib2
|
import urllib2
|
||||||
import urlparse
|
import urlparse
|
||||||
|
|
||||||
from heat.common import exception
|
|
||||||
|
|
||||||
from heat.openstack.common import log as logging
|
from heat.openstack.common import log as logging
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
from sqlalchemy import *
|
from sqlalchemy import *
|
||||||
from migrate import *
|
from migrate import *
|
||||||
from heat.common import utils
|
|
||||||
|
|
||||||
|
|
||||||
def upgrade(migrate_engine):
|
def upgrade(migrate_engine):
|
||||||
|
@ -14,9 +14,7 @@
|
|||||||
|
|
||||||
from heat.rpc.api import *
|
from heat.rpc.api import *
|
||||||
from heat.openstack.common import timeutils
|
from heat.openstack.common import timeutils
|
||||||
from heat.engine import parser
|
|
||||||
from heat.engine import template
|
from heat.engine import template
|
||||||
from heat.engine import watchrule
|
|
||||||
|
|
||||||
from heat.openstack.common import log as logging
|
from heat.openstack.common import log as logging
|
||||||
|
|
||||||
|
@ -32,7 +32,6 @@ except ImportError:
|
|||||||
quantumclient_present = False
|
quantumclient_present = False
|
||||||
|
|
||||||
from heat.common import heat_keystoneclient as kc
|
from heat.common import heat_keystoneclient as kc
|
||||||
from heat.openstack.common import cfg
|
|
||||||
from heat.openstack.common import log as logging
|
from heat.openstack.common import log as logging
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
@ -13,8 +13,6 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
from heat.common import exception
|
|
||||||
|
|
||||||
from heat.openstack.common import log as logging
|
from heat.openstack.common import log as logging
|
||||||
from heat.engine.resources.quantum import quantum
|
from heat.engine.resources.quantum import quantum
|
||||||
|
|
||||||
|
@ -13,9 +13,6 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
import urllib2
|
|
||||||
import json
|
|
||||||
|
|
||||||
from heat.common import exception
|
from heat.common import exception
|
||||||
from heat.common import template_format
|
from heat.common import template_format
|
||||||
from heat.engine import resource
|
from heat.engine import resource
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
from heat.common import exception
|
from heat.common import exception
|
||||||
from heat.openstack.common import cfg
|
|
||||||
from heat.engine import resource
|
from heat.engine import resource
|
||||||
|
|
||||||
from heat.openstack.common import log as logging
|
from heat.openstack.common import log as logging
|
||||||
|
@ -15,7 +15,6 @@
|
|||||||
|
|
||||||
import functools
|
import functools
|
||||||
import webob
|
import webob
|
||||||
import sqlalchemy.exc
|
|
||||||
|
|
||||||
from heat.common import context
|
from heat.common import context
|
||||||
from heat.db import api as db_api
|
from heat.db import api as db_api
|
||||||
|
@ -21,7 +21,6 @@ from heat.engine import timestamp
|
|||||||
from heat.db import api as db_api
|
from heat.db import api as db_api
|
||||||
from heat.engine import parser
|
from heat.engine import parser
|
||||||
from heat.rpc import api as rpc_api
|
from heat.rpc import api as rpc_api
|
||||||
from heat.common import context as ctxtlib
|
|
||||||
import eventlet
|
import eventlet
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
@ -66,8 +66,6 @@ reldir = os.path.join(os.path.dirname(__file__), '..', '..')
|
|||||||
absdir = os.path.abspath(reldir)
|
absdir = os.path.abspath(reldir)
|
||||||
sys.path.insert(0, absdir)
|
sys.path.insert(0, absdir)
|
||||||
|
|
||||||
from heat.openstack.common import cfg
|
|
||||||
|
|
||||||
|
|
||||||
class _AnsiColorizer(object):
|
class _AnsiColorizer(object):
|
||||||
"""
|
"""
|
||||||
|
@ -18,7 +18,6 @@ import __builtin__
|
|||||||
setattr(__builtin__, '_', lambda x: x)
|
setattr(__builtin__, '_', lambda x: x)
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import shutil
|
|
||||||
|
|
||||||
from heat.db.sqlalchemy.session import get_engine
|
from heat.db.sqlalchemy.session import get_engine
|
||||||
|
|
||||||
|
@ -15,10 +15,8 @@
|
|||||||
import os
|
import os
|
||||||
import util
|
import util
|
||||||
import verify
|
import verify
|
||||||
import re
|
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
import unittest
|
import unittest
|
||||||
import json
|
|
||||||
|
|
||||||
|
|
||||||
@attr(speed='slow')
|
@attr(speed='slow')
|
||||||
|
@ -16,7 +16,6 @@ import util
|
|||||||
import verify
|
import verify
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
import unittest
|
import unittest
|
||||||
import os
|
|
||||||
|
|
||||||
|
|
||||||
@attr(speed='slow')
|
@attr(speed='slow')
|
||||||
|
@ -19,7 +19,6 @@ import paramiko
|
|||||||
import subprocess
|
import subprocess
|
||||||
import hashlib
|
import hashlib
|
||||||
import email
|
import email
|
||||||
import json
|
|
||||||
import time # for sleep
|
import time # for sleep
|
||||||
import errno
|
import errno
|
||||||
import tempfile
|
import tempfile
|
||||||
@ -28,8 +27,6 @@ import re
|
|||||||
from pkg_resources import resource_string
|
from pkg_resources import resource_string
|
||||||
from lxml import etree
|
from lxml import etree
|
||||||
|
|
||||||
from nose.plugins.attrib import attr
|
|
||||||
from nose import with_setup
|
|
||||||
from nose.exc import SkipTest
|
from nose.exc import SkipTest
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
@ -13,12 +13,9 @@
|
|||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
|
|
||||||
import socket
|
|
||||||
import json
|
|
||||||
import unittest
|
import unittest
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
|
|
||||||
import re
|
|
||||||
from heat.api.aws import utils as api_utils
|
from heat.api.aws import utils as api_utils
|
||||||
|
|
||||||
|
|
||||||
|
@ -13,15 +13,12 @@
|
|||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
|
|
||||||
import socket
|
|
||||||
import mox
|
import mox
|
||||||
import json
|
import json
|
||||||
import unittest
|
import unittest
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
|
|
||||||
import httplib
|
|
||||||
import json
|
import json
|
||||||
import urlparse
|
|
||||||
|
|
||||||
from heat.common import context
|
from heat.common import context
|
||||||
from heat.common import identifier
|
from heat.common import identifier
|
||||||
|
@ -13,20 +13,13 @@
|
|||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
|
|
||||||
import socket
|
|
||||||
import mox
|
import mox
|
||||||
import json
|
|
||||||
import unittest
|
import unittest
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
|
|
||||||
import httplib
|
|
||||||
import json
|
|
||||||
import urlparse
|
|
||||||
|
|
||||||
from heat.common import context
|
from heat.common import context
|
||||||
from heat.openstack.common import cfg
|
from heat.openstack.common import cfg
|
||||||
from heat.openstack.common import rpc
|
from heat.openstack.common import rpc
|
||||||
import heat.openstack.common.rpc.common as rpc_common
|
|
||||||
from heat.common.wsgi import Request
|
from heat.common.wsgi import Request
|
||||||
from heat.api.aws import exception
|
from heat.api.aws import exception
|
||||||
import heat.api.cloudwatch.watch as watches
|
import heat.api.cloudwatch.watch as watches
|
||||||
|
@ -17,7 +17,6 @@ import os
|
|||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
import mox
|
import mox
|
||||||
import json
|
|
||||||
|
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
|
|
||||||
|
@ -17,7 +17,6 @@ import os
|
|||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
import mox
|
import mox
|
||||||
import json
|
|
||||||
|
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
|
|
||||||
|
@ -17,7 +17,6 @@ import os
|
|||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
import mox
|
import mox
|
||||||
import json
|
|
||||||
|
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
|
|
||||||
|
@ -17,7 +17,6 @@ import os
|
|||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
import mox
|
import mox
|
||||||
import json
|
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
|
|
||||||
from heat.common import context
|
from heat.common import context
|
||||||
|
@ -15,8 +15,6 @@
|
|||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
import mox
|
|
||||||
import json
|
|
||||||
|
|
||||||
from heat.common import identifier
|
from heat.common import identifier
|
||||||
|
|
||||||
|
@ -17,15 +17,11 @@ import os
|
|||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
import mox
|
import mox
|
||||||
import json
|
|
||||||
import sqlalchemy
|
|
||||||
|
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
from nose import with_setup
|
|
||||||
|
|
||||||
from heat.tests.v1_1 import fakes
|
from heat.tests.v1_1 import fakes
|
||||||
from heat.engine.resources import instance as instances
|
from heat.engine.resources import instance as instances
|
||||||
import heat.db as db_api
|
|
||||||
from heat.common import template_format
|
from heat.common import template_format
|
||||||
from heat.engine import parser
|
from heat.engine import parser
|
||||||
from heat.openstack.common import uuidutils
|
from heat.openstack.common import uuidutils
|
||||||
|
@ -18,7 +18,6 @@ import os
|
|||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
import mox
|
import mox
|
||||||
import json
|
|
||||||
|
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
|
|
||||||
|
@ -15,11 +15,8 @@
|
|||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
import mox
|
|
||||||
import json
|
import json
|
||||||
|
|
||||||
from heat.common import context
|
|
||||||
from heat.common import exception
|
|
||||||
from heat.engine import parameters
|
from heat.engine import parameters
|
||||||
|
|
||||||
|
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
import unittest
|
import unittest
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
import mox
|
import mox
|
||||||
import json
|
|
||||||
|
|
||||||
from heat.common import context
|
from heat.common import context
|
||||||
from heat.common import exception
|
from heat.common import exception
|
||||||
|
@ -15,7 +15,6 @@
|
|||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
import mox
|
|
||||||
|
|
||||||
from heat.engine import properties
|
from heat.engine import properties
|
||||||
|
|
||||||
|
@ -17,7 +17,6 @@ import os
|
|||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
import mox
|
import mox
|
||||||
import json
|
|
||||||
|
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
|
|
||||||
|
@ -17,7 +17,6 @@ import unittest
|
|||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
import mox
|
import mox
|
||||||
|
|
||||||
import json
|
|
||||||
from heat.common import context
|
from heat.common import context
|
||||||
from heat.engine import parser
|
from heat.engine import parser
|
||||||
from heat.engine import resource
|
from heat.engine import resource
|
||||||
|
@ -18,7 +18,6 @@ import re
|
|||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
import mox
|
import mox
|
||||||
import json
|
|
||||||
|
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
|
|
||||||
|
@ -13,10 +13,8 @@
|
|||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import mox
|
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
import os
|
import os
|
||||||
import re
|
|
||||||
import unittest
|
import unittest
|
||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
|
@ -15,8 +15,6 @@
|
|||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
||||||
import eventlet
|
|
||||||
import json
|
|
||||||
import mox
|
import mox
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
@ -15,7 +15,6 @@
|
|||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
import mox
|
import mox
|
||||||
import json
|
|
||||||
|
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
|
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
import eventlet
|
import eventlet
|
||||||
import json
|
|
||||||
import mox
|
import mox
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
|
|
||||||
import json
|
|
||||||
import mox
|
import mox
|
||||||
import uuid
|
import uuid
|
||||||
import time
|
import time
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
import datetime
|
import datetime
|
||||||
import mox
|
import mox
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
from nose import with_setup
|
|
||||||
import unittest
|
import unittest
|
||||||
from nose.exc import SkipTest
|
from nose.exc import SkipTest
|
||||||
import logging
|
import logging
|
||||||
|
4
setup.py
4
setup.py
@ -13,10 +13,6 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
import gettext
|
|
||||||
import os
|
|
||||||
import subprocess
|
|
||||||
|
|
||||||
import setuptools
|
import setuptools
|
||||||
|
|
||||||
from heat.openstack.common import setup
|
from heat.openstack.common import setup
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
import eventlet
|
import eventlet
|
||||||
from eventlet.green import socket
|
from eventlet.green import socket
|
||||||
import libssh2
|
import libssh2
|
||||||
import time
|
|
||||||
import os
|
import os
|
||||||
import random
|
import random
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user