From: Zane Bitter Date: Thu, 31 May 2012 09:17:30 +0000 (+0200) Subject: Clean up imports X-Git-Tag: 2014.1~1768 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=ee2500263d0053c0850c92309c6dcbe12a014626;p=openstack-build%2Fheat-build.git Clean up imports Change-Id: Ibca9c8ab8b9dafb813baee6a9c4aa024bf9733e2 Signed-off-by: Zane Bitter --- diff --git a/heat/engine/eip.py b/heat/engine/eip.py index 266c6ebc..f138d4ef 100644 --- a/heat/engine/eip.py +++ b/heat/engine/eip.py @@ -13,9 +13,7 @@ # License for the specific language governing permissions and limitations # under the License. -import eventlet import logging -import os from heat.common import exception from heat.engine.resources import Resource diff --git a/heat/engine/instance.py b/heat/engine/instance.py index 10ba5999..cbf27035 100644 --- a/heat/engine/instance.py +++ b/heat/engine/instance.py @@ -13,16 +13,11 @@ # License for the specific language governing permissions and limitations # under the License. -import base64 import eventlet import logging import os -import string import json import sys -from email import encoders -from email.message import Message -from email.mime.base import MIMEBase from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText from novaclient.exceptions import NotFound diff --git a/heat/engine/manager.py b/heat/engine/manager.py index 06451d94..7e7ea81a 100644 --- a/heat/engine/manager.py +++ b/heat/engine/manager.py @@ -17,12 +17,6 @@ import contextlib from copy import deepcopy import datetime -import functools -import os -import socket -import tempfile -import time -import traceback import logging import webob from heat import manager diff --git a/heat/engine/resources.py b/heat/engine/resources.py index cf04b08e..8fe36e93 100644 --- a/heat/engine/resources.py +++ b/heat/engine/resources.py @@ -15,12 +15,7 @@ import base64 from datetime import datetime -import eventlet import logging -import os -import string -import json -import sys from novaclient.v1_1 import client from novaclient.exceptions import BadRequest diff --git a/heat/engine/security_group.py b/heat/engine/security_group.py index 34479609..13fe2256 100644 --- a/heat/engine/security_group.py +++ b/heat/engine/security_group.py @@ -13,9 +13,7 @@ # License for the specific language governing permissions and limitations # under the License. -import eventlet import logging -import os from novaclient.exceptions import BadRequest from novaclient.exceptions import NotFound from heat.common import exception diff --git a/heat/engine/user.py b/heat/engine/user.py index e81e27a2..f7c45456 100644 --- a/heat/engine/user.py +++ b/heat/engine/user.py @@ -13,9 +13,7 @@ # License for the specific language governing permissions and limitations # under the License. -import eventlet import logging -import os from novaclient.exceptions import BadRequest from heat.common import exception from heat.engine.resources import Resource diff --git a/heat/engine/volume.py b/heat/engine/volume.py index 0b06c24f..e1606edb 100644 --- a/heat/engine/volume.py +++ b/heat/engine/volume.py @@ -15,7 +15,6 @@ import eventlet import logging -import os import re from heat.common import exception diff --git a/heat/engine/wait_condition.py b/heat/engine/wait_condition.py index b847a026..a2e52fc0 100644 --- a/heat/engine/wait_condition.py +++ b/heat/engine/wait_condition.py @@ -16,7 +16,6 @@ import eventlet import logging import json -import os from heat.common import exception from heat.db import api as db_api