From c0292bf52647c32c6995e05f783ac1f79b56b74b Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Sat, 3 May 2014 12:59:48 +0200 Subject: [PATCH] Remove unused imports --- bootstrapvz/providers/azure/__init__.py | 3 --- bootstrapvz/providers/ec2/__init__.py | 3 --- bootstrapvz/providers/kvm/__init__.py | 3 --- bootstrapvz/providers/virtualbox/__init__.py | 3 --- 4 files changed, 12 deletions(-) diff --git a/bootstrapvz/providers/azure/__init__.py b/bootstrapvz/providers/azure/__init__.py index ebd34e4..9a5895f 100644 --- a/bootstrapvz/providers/azure/__init__.py +++ b/bootstrapvz/providers/azure/__init__.py @@ -5,12 +5,9 @@ from bootstrapvz.common.tasks import volume from bootstrapvz.common.tasks import loopback from bootstrapvz.common.tasks import partitioning from bootstrapvz.common.tasks import filesystem -from bootstrapvz.common.tasks import bootstrap from bootstrapvz.common.tasks import security -from bootstrapvz.common.tasks import network from bootstrapvz.common.tasks import initd from bootstrapvz.common.tasks import ssh -from bootstrapvz.common.tasks import cleanup from bootstrapvz.common.tasks import workspace diff --git a/bootstrapvz/providers/ec2/__init__.py b/bootstrapvz/providers/ec2/__init__.py index 5d0f295..6d7dbda 100644 --- a/bootstrapvz/providers/ec2/__init__.py +++ b/bootstrapvz/providers/ec2/__init__.py @@ -10,13 +10,10 @@ import tasks.initd from bootstrapvz.common.tasks import volume from bootstrapvz.common.tasks import filesystem from bootstrapvz.common.tasks import boot -from bootstrapvz.common.tasks import network from bootstrapvz.common.tasks import initd from bootstrapvz.common.tasks import partitioning from bootstrapvz.common.tasks import loopback -from bootstrapvz.common.tasks import bootstrap from bootstrapvz.common.tasks import security -from bootstrapvz.common.tasks import cleanup from bootstrapvz.common.tasks import workspace diff --git a/bootstrapvz/providers/kvm/__init__.py b/bootstrapvz/providers/kvm/__init__.py index 0e24cef..e4e4f61 100644 --- a/bootstrapvz/providers/kvm/__init__.py +++ b/bootstrapvz/providers/kvm/__init__.py @@ -3,12 +3,9 @@ from bootstrapvz.common.tasks import volume from bootstrapvz.common.tasks import loopback from bootstrapvz.common.tasks import partitioning from bootstrapvz.common.tasks import filesystem -from bootstrapvz.common.tasks import bootstrap from bootstrapvz.common.tasks import security -from bootstrapvz.common.tasks import network from bootstrapvz.common.tasks import initd from bootstrapvz.common.tasks import ssh -from bootstrapvz.common.tasks import cleanup from bootstrapvz.common.tasks import workspace diff --git a/bootstrapvz/providers/virtualbox/__init__.py b/bootstrapvz/providers/virtualbox/__init__.py index f33d5f2..3ad8300 100644 --- a/bootstrapvz/providers/virtualbox/__init__.py +++ b/bootstrapvz/providers/virtualbox/__init__.py @@ -3,11 +3,8 @@ from bootstrapvz.common.tasks import volume from bootstrapvz.common.tasks import loopback from bootstrapvz.common.tasks import partitioning from bootstrapvz.common.tasks import filesystem -from bootstrapvz.common.tasks import bootstrap from bootstrapvz.common.tasks import security -from bootstrapvz.common.tasks import network from bootstrapvz.common.tasks import initd -from bootstrapvz.common.tasks import cleanup from bootstrapvz.common.tasks import workspace