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