From ee6a872c40efd0e9047a484cca6be5346d875d51 Mon Sep 17 00:00:00 2001 From: choccccy Date: Mon, 27 Nov 2023 11:45:42 -0700 Subject: [PATCH] fixed extra hinting in DocDB.insert_many() --- pylib/embedding/pgvector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylib/embedding/pgvector.py b/pylib/embedding/pgvector.py index c0b7242..783306f 100644 --- a/pylib/embedding/pgvector.py +++ b/pylib/embedding/pgvector.py @@ -328,7 +328,7 @@ async def insert( async def insert_many( self, - content_list: Iterable[tuple[str, str | None, str | None, list[int], list[str]]] + content_list: Iterable[tuple[str, str | None, list[int], list[str]]] ) -> None: ''' Update a table with one or more embedded documents