Skip to content

Commit fdf4f85

Browse files
committed
fix(annotation.py): function call error
1 parent 89b82d0 commit fdf4f85

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vrdu/annotation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ def generate_non_figure_bb(self) -> Dict[int, List[Block]]:
288288
and elements[-1].category == element.category
289289
and elements[-1].page_index == element.page_index
290290
and elements[-1].source_code == element.source_code
291-
and elements[-1].bbox.overlaps(element.bbox)
291+
and elements[-1].bbox.overlap(element.bbox)
292292
):
293293
elements[-1].bbox = BoundingBox(
294294
min(

0 commit comments

Comments
 (0)