Browse Source

bug fixes

Steve Nyemba 1 day ago
parent
commit
18c54d7664
1 changed files with 4 additions and 4 deletions
  1. 4 4
      transport/__init__.py

+ 4 - 4
transport/__init__.py

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