From 3e490c418418178b7371752a836e6607899d116e Mon Sep 17 00:00:00 2001 From: Maksym Lysak Date: Fri, 25 Oct 2024 17:46:44 +0200 Subject: [PATCH] removed prints Signed-off-by: Maksym Lysak --- docling/backend/html_backend.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/docling/backend/html_backend.py b/docling/backend/html_backend.py index 0434138a..3164a8f6 100644 --- a/docling/backend/html_backend.py +++ b/docling/backend/html_backend.py @@ -136,8 +136,6 @@ class HTMLDocumentBackend(DeclarativeDocumentBackend): def get_direct_text(self, item): """Get the direct text of the
  • element (ignoring nested lists).""" text = item.find(string=True, recursive=False) - print(text) - if isinstance(text, str): return text.strip()