Skip to content

Commit

Permalink
type checking
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsbatista committed Jan 6, 2025
1 parent a4c7950 commit 6c0ba85
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,6 @@ def try_merge_level(documents: List[Document], docs_to_return: List[Document]) -
return try_merge_level(merged_docs, docs_to_return)

# start the recursive merging process
docs_to_return = []
docs_to_return: List[Document] = []
final_docs = try_merge_level(matched_leaf_documents, docs_to_return)
return {"documents": final_docs}

0 comments on commit 6c0ba85

Please sign in to comment.