From 76d6059693b84ddac39645bcae3bde57ede5057d Mon Sep 17 00:00:00 2001 From: Dhruv Chaturvedi Date: Thu, 21 May 2026 17:05:04 +0530 Subject: [PATCH] fix: Remove DB2SQLComponent reference from IBM components - Removed DB2SQLComponent from __init__.py as the db2_sql.py module doesn't exist - This fixes the test_all_modules_importable test failure - Fixes CI failure in Unit Tests - Python 3.14 - Group 5 --- src/lfx/src/lfx/components/ibm/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lfx/src/lfx/components/ibm/__init__.py b/src/lfx/src/lfx/components/ibm/__init__.py index fb0a390bce..2c3e391fcc 100644 --- a/src/lfx/src/lfx/components/ibm/__init__.py +++ b/src/lfx/src/lfx/components/ibm/__init__.py @@ -5,7 +5,6 @@ from typing import TYPE_CHECKING, Any from lfx.components._importing import import_mod if TYPE_CHECKING: - from lfx.components.ibm.db2_sql import DB2SQLComponent from lfx.components.ibm.db2_vector import DB2VectorStoreComponent from lfx.components.ibm.watsonx import WatsonxAIComponent from lfx.components.ibm.watsonx_embeddings import WatsonxEmbeddingsComponent @@ -14,11 +13,9 @@ _dynamic_imports = { "WatsonxAIComponent": "watsonx", "WatsonxEmbeddingsComponent": "watsonx_embeddings", "DB2VectorStoreComponent": "db2_vector", - "DB2SQLComponent": "db2_sql", } __all__ = [ - "DB2SQLComponent", "DB2VectorStoreComponent", "WatsonxAIComponent", "WatsonxEmbeddingsComponent",