소스 검색

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