From 6e753a1fcd8d704e3392f92680e4e5eae2d13779 Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Tue, 8 Jul 2025 12:03:45 -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 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 = {}