Skip to content

Commit 1731243

Browse files
updated test-results
Signed-off-by: Peter Staar <[email protected]>
1 parent ce4f342 commit 1731243

File tree

60 files changed

+7574
-7573
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+7574
-7573
lines changed

docling_parse/pdf_parser.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ def _to_cells(self, cells: dict) -> List[PdfCell]:
174174

175175
result: List[PdfCell] = []
176176
for ind, row in enumerate(data):
177+
print(row)
177178
rect = BoundingRectangle(
178179
r_x0=row[header.index(f"r_x0")],
179180
r_y0=row[header.index(f"r_y0")],

src/v2/pdf_resources/page_cell.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ namespace pdflib
296296
x1 = std::max(x1, r_x1);
297297
x1 = std::max(x1, r_x2);
298298
x1 = std::max(x1, r_x3);
299-
299+
300300
y1 = r_y0;
301301
y1 = std::max(y1, r_y1);
302302
y1 = std::max(y1, r_y2);

0 commit comments

Comments
 (0)