소스 검색

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 = {}