From aa38a24ba79099ce08682b6a64a2477a7a8ac448 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Fabricio=20Urbina=20Gonz=C3=A1lez?= Date: Tue, 5 Mar 2024 12:16:21 -0600 Subject: [PATCH 1/3] Update document_converter.py Fix https://github.com/googleapis/langchain-google-datastore-python/issues/23 Remove unused code. --- src/langchain_google_datastore/document_converter.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/langchain_google_datastore/document_converter.py b/src/langchain_google_datastore/document_converter.py index 3c8fc75..802cb5d 100644 --- a/src/langchain_google_datastore/document_converter.py +++ b/src/langchain_google_datastore/document_converter.py @@ -16,7 +16,6 @@ import itertools import json -from enum import StrEnum from typing import TYPE_CHECKING, Any, Dict, List import more_itertools From fa4645092c846ec23b874c7041b4fef601d6304d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Fabricio=20Urbina=20Gonz=C3=A1lez?= Date: Tue, 5 Mar 2024 12:31:57 -0600 Subject: [PATCH 2/3] fix: remove unused enum in document_converter --- src/langchain_google_datastore/document_converter.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/langchain_google_datastore/document_converter.py b/src/langchain_google_datastore/document_converter.py index 802cb5d..1ffc271 100644 --- a/src/langchain_google_datastore/document_converter.py +++ b/src/langchain_google_datastore/document_converter.py @@ -16,6 +16,7 @@ import itertools import json + from typing import TYPE_CHECKING, Any, Dict, List import more_itertools From fc966cb8c5bfd2fb553723b2de6c3ba28a6dcbcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Fabricio=20Urbina=20Gonz=C3=A1lez?= Date: Tue, 5 Mar 2024 12:32:19 -0600 Subject: [PATCH 3/3] fix: remove unused enum in document_converter --- src/langchain_google_datastore/document_converter.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/langchain_google_datastore/document_converter.py b/src/langchain_google_datastore/document_converter.py index 1ffc271..802cb5d 100644 --- a/src/langchain_google_datastore/document_converter.py +++ b/src/langchain_google_datastore/document_converter.py @@ -16,7 +16,6 @@ import itertools import json - from typing import TYPE_CHECKING, Any, Dict, List import more_itertools