Fixing import order

This commit is contained in:
Josh Gachnang 2014-03-19 17:06:34 -07:00
parent ececa3bce2
commit fc043dd1d3
3 changed files with 10 additions and 10 deletions

View File

@ -18,6 +18,10 @@ import random
import threading
import time
import pkg_resources
from stevedore import driver
from wsgiref import simple_server
from ironic_python_agent.api import app
from ironic_python_agent import base
from ironic_python_agent import encoding
@ -27,10 +31,6 @@ from ironic_python_agent import ironic_api_client
from ironic_python_agent.openstack.common import log
from ironic_python_agent import utils
import pkg_resources
from stevedore import driver
from wsgiref import simple_server
def _time():
"""Wraps time.time() for simpler testing."""

View File

@ -16,11 +16,11 @@ limitations under the License.
import base64
from ironic_python_agent import utils
import json
import os
from ironic_python_agent import utils
class ConfigDriveWriter(object):
def __init__(self):

View File

@ -18,16 +18,16 @@ import json
import time
import unittest
import mock
import pkg_resources
from wsgiref import simple_server
from ironic_python_agent import agent
from ironic_python_agent import base
from ironic_python_agent import encoding
from ironic_python_agent import errors
from ironic_python_agent import hardware
import mock
import pkg_resources
from wsgiref import simple_server
EXPECTED_ERROR = RuntimeError('command execution failed')