From a7e088845e508464281daed1301ce32c0acc0797 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=A3=92=E6=A3=92?= Date: Mon, 15 Jan 2024 18:11:22 +0800 Subject: [PATCH] update scrape_web docstring. --- metagpt/tools/functions/libs/scrape_web/scrape_web.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/metagpt/tools/functions/libs/scrape_web/scrape_web.py b/metagpt/tools/functions/libs/scrape_web/scrape_web.py index 5cd984f4d..e68ce0e64 100644 --- a/metagpt/tools/functions/libs/scrape_web/scrape_web.py +++ b/metagpt/tools/functions/libs/scrape_web/scrape_web.py @@ -13,9 +13,6 @@ async def scrape_web(url, *urls): Returns: (dict): The inner text content and html structure of the web page, key are : 'inner_text', 'html'. - - Raises: - Any exceptions that may occur during the Playwright operation. """ # Create a PlaywrightWrapper instance for the Chromium browser web = await PlaywrightWrapper("chromium").run(url, *urls)