Skip to content

Commit

Permalink
fix method call
Browse files Browse the repository at this point in the history
  • Loading branch information
ArneBinder committed Sep 17, 2024
1 parent 2173844 commit b099a1d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ def decode(self, **kwargs) -> Sequence[DocumentType]:
result = []
for doc in decoded_documents:
original_document = doc.metadata["original_document"]
self._integrate_predictions_into_original_document(
document=doc, original_document=original_document
self._integrate_predictions_from_converted_document(
converted_document=doc, document=original_document
)
result.append(original_document)
return result
Expand Down

0 comments on commit b099a1d

Please sign in to comment.