Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
list => List
Browse files Browse the repository at this point in the history
  • Loading branch information
nsthorat committed Oct 30, 2023
1 parent 14d75d2 commit 5f39e60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llama_hub/lilac_reader/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def _remove_item_path(item: ll.Item, path: ll.PathTuple) -> None:
else:
_remove_item_path(item[path[0]], path[1:])

documents: list[Document] = []
documents: List[Document] = []
for row in rows:
text = _item_from_path(row, text_path)
doc_id = _item_from_path(row, doc_id_path)
Expand Down

0 comments on commit 5f39e60

Please sign in to comment.