Steve Nyemba 1 päivä sitten
vanhempi
commit
18c54d7664
1 muutettua tiedostoa jossa 4 lisäystä ja 4 poistoa
  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