Skip to content

Commit

Permalink
Merge branch 'main' into klaijan/xlsx-sub-tables
Browse files Browse the repository at this point in the history
  • Loading branch information
Klaijan authored Oct 2, 2023
2 parents 3ee486f + 4d64923 commit e3979ce
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.10.19-dev1
## 0.10.19-dev2

### Enhancements

Expand Down
2 changes: 1 addition & 1 deletion unstructured/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.10.19-dev1" # pragma: no cover
__version__ = "0.10.19-dev2" # pragma: no cover
3 changes: 2 additions & 1 deletion unstructured/ingest/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,11 @@ def process_documents(
verbose: bool,
dest_doc_connector: t.Optional[BaseDestinationConnector] = None,
) -> None:
languages = partition_config.ocr_languages.split("+") if partition_config.ocr_languages else []
process_document_with_partition_args = partial(
process_document,
strategy=partition_config.strategy,
ocr_languages=partition_config.ocr_languages,
languages=languages,
encoding=partition_config.encoding,
pdf_infer_table_structure=partition_config.pdf_infer_table_structure,
)
Expand Down

0 comments on commit e3979ce

Please sign in to comment.