浏览代码

bug fixes

Steve Nyemba 1 天之前
父节点
当前提交
6e753a1fcd
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      transport/__init__.py

+ 4 - 4
transport/__init__.py

@@ -23,19 +23,19 @@ from transport import sql
 try:
     from transport import  nosql
 except Exception as e:
-    pass
+    nosql = {}
 try:
     from transport import  cloud
 except Exception as e:
-    pass
+    cloud = {}
 try:
     from transport import  warehouse
 except Exception as e:
-    pass
+    warehouse = {}
 try:
     from transport import  other
 except Exception as e:
-    pass
+    other = {}