From 85106c7c7eea72ec815a32c58d16ea0e8a4f17b1 Mon Sep 17 00:00:00 2001 From: cachho Date: Wed, 30 Aug 2023 20:19:41 +0200 Subject: [PATCH] fix: remove stale code (#514) --- embedchain/utils.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/embedchain/utils.py b/embedchain/utils.py index fb7ef14a..b04b0957 100644 --- a/embedchain/utils.py +++ b/embedchain/utils.py @@ -93,15 +93,6 @@ def use_pysqlite3(): "Error:", e, ) - __import__("pysqlite3") - sys.modules["sqlite3"] = sys.modules.pop("pysqlite3") - # Let the user know what happened. - current_time = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S,%f")[:-3] - print( - f"{current_time} [embedchain] [INFO]", - "Swapped std-lib sqlite3 with pysqlite3 for ChromaDb compatibility.", - f"Your original version was {sqlite3.sqlite_version}.", - ) def format_source(source: str, limit: int = 20) -> str: