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)