Fix vnflcm samples pep8 error
[vfc/gvnfm/vnflcm.git] / lcm / lcm / samples / resources.py
index 2a4fa4e..700fcb8 100644 (file)
@@ -12,7 +12,6 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-import json
 import logging
 import threading
 import traceback
@@ -22,6 +21,7 @@ from lcm.pub.vimapi import adaptor
 
 logger = logging.getLogger(__name__)
 
+
 class ResCreateThread(threading.Thread):
     """
     Create resource
@@ -36,10 +36,11 @@ class ResCreateThread(threading.Thread):
         except:
             logger.error(traceback.format_exc())
             logger.error(str(sys.exc_info()))
-            
+
     def do_notify(self, res_type, ret):
         logger.debug('ret of [%s] is %s', res_type, ret)
 
+
 class ResDeleteThread(threading.Thread):
     """
     Delete resource
@@ -54,6 +55,6 @@ class ResDeleteThread(threading.Thread):
         except:
             logger.error(traceback.format_exc())
             logger.error(str(sys.exc_info()))
-            
+
     def do_notify(self, res_type, res_id):
         logger.debug('Delete %s(%s)', res_type, res_id)