fix: added the missing function argument (#3085)

This commit is contained in:
Jan Kanty Milczek 2024-05-23 16:30:26 +02:00 committed by GitHub
parent b8d894f963
commit 9b83330b5a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 2 deletions

View File

@ -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

View File

@ -1 +1 @@
__version__ = "0.14.3-dev0" # pragma: no cover
__version__ = "0.14.3-dev1" # pragma: no cover

View File

@ -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,
)