From 562ee92e70c54f37084809d7dcf6fd44618d3102 Mon Sep 17 00:00:00 2001 From: Dev 2049 Date: Tue, 30 May 2023 14:51:03 -0700 Subject: [PATCH] fmt --- langchain/docstore/base.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/langchain/docstore/base.py b/langchain/docstore/base.py index 35f75f5c489..915707926f6 100644 --- a/langchain/docstore/base.py +++ b/langchain/docstore/base.py @@ -8,12 +8,13 @@ from pathlib import Path from typing import ( Dict, Generic, + Iterable, Iterator, List, Optional, Sequence, TypeVar, - Union, Iterable, + Union, ) from langchain.docstore.document import Document