From 18c54d7664c4cdeeff4c8432e529e049dbaa052c Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Tue, 8 Jul 2025 12:02:38 -0500 Subject: [PATCH] bug fixes --- transport/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/transport/__init__.py b/transport/__init__.py index bcc8904..a96b4f7 100644 --- a/transport/__init__.py +++ b/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