Skip to content

Commit

Permalink
fix: added the missing function argument (#3085)
Browse files Browse the repository at this point in the history
  • Loading branch information
MillCheck authored May 23, 2024
1 parent b8d894f commit 9b83330
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.14.3-dev0
## 0.14.3-dev1

### Enhancements

Expand All @@ -8,6 +8,8 @@

### Fixes

* Add the missing `form_extraction_skip_tables` argument to the `partition_pdf_or_image` call.

## 0.14.2

### 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.14.3-dev0" # pragma: no cover
__version__ = "0.14.3-dev1" # pragma: no cover
1 change: 1 addition & 0 deletions unstructured/partition/pdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

Expand Down

0 comments on commit 9b83330

Please sign in to comment.