diff --git a/chromadb/api/types.py b/chromadb/api/types.py index babbe4bda34..89849fad2c1 100644 --- a/chromadb/api/types.py +++ b/chromadb/api/types.py @@ -248,7 +248,7 @@ def __call__(self: EmbeddingFunction[D], input: D) -> Embeddings: unpacked_result = maybe_cast_one_to_many_embedding(result) - return validate_embeddings(unpacked_result) # type: ignore[arg-type] + return validate_embeddings(unpacked_result) # type: ignore[arg-type] setattr(cls, "__call__", __call__)