Browse Source

remove duplicate time import

Fabian von Feilitzsch 7 years ago
parent
commit
ffc860e471

+ 0 - 1
roles/lib_openshift/library/oc_adm_ca_server_cert.py

@@ -1525,7 +1525,6 @@ class CAServerCert(OpenShiftCLI):
         # Added this here as a safegaurd for stomping on the
         # cert and key files if they exist
         if self.config.config_options['backup']['value']:
-            import time
             ext = time.strftime("%Y-%m-%d@%H:%M:%S", time.localtime(time.time()))
             date_str = "%s_" + "%s" % ext
 

+ 0 - 1
roles/lib_openshift/library/oc_adm_csr.py

@@ -1636,7 +1636,6 @@ class OCcsr(OpenShiftCLI):
             all_results = []
             finished = False
             timeout = False
-            import time
             # loop for timeout or block until all nodes pass
             ctr = 0
             while True:

+ 0 - 1
roles/lib_openshift/library/oc_adm_router.py

@@ -2957,7 +2957,6 @@ class Router(OpenShiftCLI):
         results = []
         self.needs_update()
 
-        import time
         # pylint: disable=maybe-no-member
         for kind, oc_data in self.prepared_router.items():
             if oc_data['obj'] is not None:

+ 0 - 1
roles/lib_openshift/library/oc_storageclass.py

@@ -1595,7 +1595,6 @@ class OCStorageClass(OpenShiftCLI):
         self.delete()
         # pause here and attempt to wait for delete.
         # Better option would be to poll
-        import time
         time.sleep(5)
         return self.create()
 

+ 0 - 1
roles/lib_openshift/src/class/oc_adm_ca_server_cert.py

@@ -37,7 +37,6 @@ class CAServerCert(OpenShiftCLI):
         # Added this here as a safegaurd for stomping on the
         # cert and key files if they exist
         if self.config.config_options['backup']['value']:
-            import time
             ext = time.strftime("%Y-%m-%d@%H:%M:%S", time.localtime(time.time()))
             date_str = "%s_" + "%s" % ext
 

+ 0 - 1
roles/lib_openshift/src/class/oc_adm_csr.py

@@ -170,7 +170,6 @@ class OCcsr(OpenShiftCLI):
             all_results = []
             finished = False
             timeout = False
-            import time
             # loop for timeout or block until all nodes pass
             ctr = 0
             while True:

+ 0 - 1
roles/lib_openshift/src/class/oc_adm_router.py

@@ -280,7 +280,6 @@ class Router(OpenShiftCLI):
         results = []
         self.needs_update()
 
-        import time
         # pylint: disable=maybe-no-member
         for kind, oc_data in self.prepared_router.items():
             if oc_data['obj'] is not None:

+ 0 - 1
roles/lib_openshift/src/class/oc_storageclass.py

@@ -48,7 +48,6 @@ class OCStorageClass(OpenShiftCLI):
         self.delete()
         # pause here and attempt to wait for delete.
         # Better option would be to poll
-        import time
         time.sleep(5)
         return self.create()