removed prints

Signed-off-by: Maksym Lysak <mly@zurich.ibm.com>
This commit is contained in:
Maksym Lysak 2024-10-25 17:46:44 +02:00
parent 7332360e27
commit 3e490c4184

View File

@ -136,8 +136,6 @@ class HTMLDocumentBackend(DeclarativeDocumentBackend):
def get_direct_text(self, item):
"""Get the direct text of the <li> element (ignoring nested lists)."""
text = item.find(string=True, recursive=False)
print(text)
if isinstance(text, str):
return text.strip()