From d8873aa0c97d44c4565d44e20f113f289ad32bd6 Mon Sep 17 00:00:00 2001 From: Benichou Date: Tue, 8 Apr 2025 01:00:12 -0400 Subject: [PATCH] fix/adding a commit with a signature Signed-off-by: Franck Benichou franck.benichou@sciencespo.fr Signed-off-by: Benichou --- docling/backend/mspowerpoint_backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docling/backend/mspowerpoint_backend.py b/docling/backend/mspowerpoint_backend.py index 86cc6c60..9aaf41f5 100644 --- a/docling/backend/mspowerpoint_backend.py +++ b/docling/backend/mspowerpoint_backend.py @@ -406,7 +406,7 @@ class MsPowerpointDocumentBackend(DeclarativeDocumentBackend, PaginatedDocumentB if shape.shape_type == MSO_SHAPE_TYPE.PICTURE: # Handle Pictures drawing_blip = self.xpath_expr(shape.element) - if drawing_blip: + if drawing_blip: #ensure there is a drwaing blip self.handle_pictures(shape, parent_slide, slide_ind, doc, drawing_blip, slide) # If shape doesn't have any text, move on to the next shape if not hasattr(shape, "text"):