Skip to content

Commit

Permalink
Add PartitionError to aryn_sdk.partition's __init__.py (#1102)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkLindblad authored Jan 9, 2025
1 parent 52e1c0b commit e1f0f9c
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions lib/aryn-sdk/aryn_sdk/partition/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
from .partition import partition_file, tables_to_pandas, table_elem_to_dataframe, convert_image_element
from .partition import partition_file, tables_to_pandas, table_elem_to_dataframe, convert_image_element, PartitionError
from .art import draw_with_boxes

__all__ = ["partition_file", "table_elem_to_dataframe", "tables_to_pandas", "draw_with_boxes", "convert_image_element"]
__all__ = [
"partition_file",
"table_elem_to_dataframe",
"tables_to_pandas",
"draw_with_boxes",
"convert_image_element",
"PartitionError",
]

0 comments on commit e1f0f9c

Please sign in to comment.