Skip to content

Commit 8125c35

Browse files
committed
fixed type bug
1 parent f8d9716 commit 8125c35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/openparse/processing/semantic_transforms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def __init__(
3737
self.batch_size = batch_size
3838
self.client = self._create_client()
3939

40-
def embed_many(self, texts: list[str]) -> list[list[float]]:
40+
def embed_many(self, texts: List[str]) -> List[List[float]]:
4141
res = []
4242
non_empty_texts = [text for text in texts if text]
4343

0 commit comments

Comments
 (0)