From 9b83330b5ad39a7e9cfcbab596a54ed1eb636d3a Mon Sep 17 00:00:00 2001 From: Jan Kanty Milczek Date: Thu, 23 May 2024 16:30:26 +0200 Subject: [PATCH] fix: added the missing function argument (#3085) --- CHANGELOG.md | 4 +++- unstructured/__version__.py | 2 +- unstructured/partition/pdf.py | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d50bb141..43d736295 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.14.3-dev0 +## 0.14.3-dev1 ### Enhancements @@ -8,6 +8,8 @@ ### Fixes +* Add the missing `form_extraction_skip_tables` argument to the `partition_pdf_or_image` call. + ## 0.14.2 ### Enhancements diff --git a/unstructured/__version__.py b/unstructured/__version__.py index 043dfc07a..1bc42f1ae 100644 --- a/unstructured/__version__.py +++ b/unstructured/__version__.py @@ -1 +1 @@ -__version__ = "0.14.3-dev0" # pragma: no cover +__version__ = "0.14.3-dev1" # pragma: no cover diff --git a/unstructured/partition/pdf.py b/unstructured/partition/pdf.py index 904e29155..d38a924a5 100644 --- a/unstructured/partition/pdf.py +++ b/unstructured/partition/pdf.py @@ -205,6 +205,7 @@ def partition_pdf( date_from_file_object=date_from_file_object, starting_page_number=starting_page_number, extract_forms=extract_forms, + form_extraction_skip_tables=form_extraction_skip_tables, **kwargs, )