From b3712250b80a9d0b4c1bb5590d0e7ab11a3850be Mon Sep 17 00:00:00 2001 From: Brett England Date: Fri, 22 Mar 2024 16:44:39 -0400 Subject: [PATCH] nit: continue on db lookup failure --- scripts/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/utils.py b/scripts/utils.py index a8b2cd98..92fd5d8c 100644 --- a/scripts/utils.py +++ b/scripts/utils.py @@ -159,7 +159,7 @@ class Command: handler_class = self.DB_HANDLERS.get(database) if handler_class is None: print(f"No handler found for database '{database}'") - return + continue handler_instance = handler_class() # Instantiate the class # If the DB can handle this cmd dispatch it. if hasattr(handler_instance, cmd) and callable(