From 96d1eb0d0d0c66f9ecaf4f5332246c75c5b26fea Mon Sep 17 00:00:00 2001 From: unclecode Date: Wed, 26 Jun 2024 13:03:03 +0800 Subject: [PATCH] Some updated ins utils.py --- crawl4ai/utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crawl4ai/utils.py b/crawl4ai/utils.py index 3673fcc9..7699dc7b 100644 --- a/crawl4ai/utils.py +++ b/crawl4ai/utils.py @@ -770,4 +770,6 @@ def wrap_text(draw, text, font, max_width): def format_html(html_string): soup = BeautifulSoup(html_string, 'html.parser') - return soup.prettify() \ No newline at end of file + return soup.prettify() + +