File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
unstructured/ingest/doc_processor Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1- ## 0.4.12-dev0
1+ ## 0.4.12-dev1
22
3- * Adds console_entrypoint for unstructured-ingest
3+ * Adds console_entrypoint for unstructured-ingest and more structure/docs related to ingest.
44
55## 0.4.11
66
Original file line number Diff line number Diff line change @@ -28,7 +28,10 @@ def process_document(doc):
2828 # accessing the .filename property could lazily call .get_file(), but
2929 # keeping them as two distinct calls for end-user transparency for now
3030 print (f"Processing { doc .filename } " )
31- isd_elems = convert_to_isd (partition (filename = doc .filename ))
31+
32+ elements = partition (filename = doc .filename )
33+
34+ isd_elems = convert_to_isd (elements )
3235
3336 isd_elems_no_filename = []
3437 for elem in isd_elems :
You can’t perform that action at this time.
0 commit comments