浏览代码

bug fixes

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

+ 4 - 4
transport/__init__.py

@@ -22,19 +22,19 @@ import numpy as np
 from transport import sql
 try:
     from transport import  nosql
-finally:
+except Exception as e:
     pass
 try:
     from transport import  cloud
-finally:
+except Exception as e:
     pass
 try:
     from transport import  warehouse
-finally:
+except Exception as e:
     pass
 try:
     from transport import  other
-finally:
+except Exception as e:
     pass