]> Frank Brehm's Git Trees - pixelpark/create-vmware-tpl.git/commitdiff
Applying flake8 rules to lib/cr_vmware_tpl/handler.py
authorFrank Brehm <frank.brehm@pixelpark.com>
Fri, 2 Nov 2018 15:26:31 +0000 (16:26 +0100)
committerFrank Brehm <frank.brehm@pixelpark.com>
Fri, 2 Nov 2018 15:26:31 +0000 (16:26 +0100)
lib/cr_vmware_tpl/handler.py

index ffd2ec2a67839855df04a5626c3b3170c1b1e0cb..152d7e1e92a2ab5e8ef7b351a8e449809b78921c 100644 (file)
@@ -11,7 +11,6 @@ from __future__ import absolute_import, print_function
 # Standard module
 import os
 import logging
-import ssl
 import re
 import random
 import time
@@ -24,28 +23,20 @@ import signal
 import pytz
 import paramiko
 
-from pyVmomi import vim, vmodl
-
-from pyVim.connect import SmartConnect, Disconnect
-
 # Own modules
 
 from fb_tools.common import pp, to_str
 
-from fb_tools.errors import HandlerError, ExpectedHandlerError, CommandNotFoundError
-from fb_tools.errors import TerraformVmError, TerraformVmDefinitionError, NetworkNotExistingError
-from fb_tools.errors import CannotConnectVsphereError, NoDatastoreFoundError
-from fb_tools.errors import InterruptError
+from fb_tools.errors import HandlerError, ExpectedHandlerError
 
 from fb_tools.handler import BaseHandler
 
-from fb_tools.vsphere import BaseVsphereHandler
 from fb_tools.vsphere.server import VsphereServer
 from fb_tools.vsphere.iface import VsphereVmInterface
 
 from .config import CrTplConfiguration
 
-__version__ = '0.10.11'
+__version__ = '0.10.12'
 
 LOG = logging.getLogger(__name__)
 TZ = pytz.timezone('Europe/Berlin')
@@ -827,8 +818,8 @@ class CrTplHandler(BaseHandler):
         vm.MarkAsTemplate()
         LOG.debug("Object {!r} is now a VMWare template.".format(self.config.template_name))
 
-# =============================================================================
 
+# =============================================================================
 if __name__ == "__main__":
 
     pass