Update tls-init-container
[integration.git] / test / vcpe / sdcutils.py
index 2cf2a64..470199e 100755 (executable)
@@ -1,10 +1,9 @@
-#! /usr/bin/python
+#!/usr/bin/env python
 
-import sys
 import logging
 import requests
 import json
-from vcpecommon import *
+from vcpecommon import * # pylint: disable=W0614
 
 
 class SdcUtils:
@@ -18,7 +17,7 @@ class SdcUtils:
 
     def download_vcpe_service_template(self):
         """
-        :return: 
+        :return:
         """
 
         url = self.vcpecommon.sdc_service_list_url
@@ -84,6 +83,3 @@ class SdcUtils:
                     self.logger.debug('------- Creation subcategory request submitted to SDC, got response --------')
                     self.logger.debug('response code = %s' % resp.status_code )
                     self.logger.debug('---------------------------------------------------------------')
-
-
-