From c5d93d7f0ceabfe35eeb65d564364b541bbbca0c Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 14 Jul 2024 20:04:27 +0100 Subject: [PATCH] removed get_playwright_instructions --- aider/gui.py | 4 ---- aider/scrape.py | 3 --- 2 files changed, 7 deletions(-) diff --git a/aider/gui.py b/aider/gui.py index a2284c1b9..f34e66376 100755 --- a/aider/gui.py +++ b/aider/gui.py @@ -482,10 +482,6 @@ class GUI: if not self.state.scraper: self.scraper = Scraper(print_error=self.info) - instructions = self.scraper.get_playwright_instructions() - if instructions: - self.info(instructions) - content = self.scraper.scrape(url) or "" if content.strip(): content = f"{url}\n\n" + content diff --git a/aider/scrape.py b/aider/scrape.py index 7eed88da9..f21693a9c 100755 --- a/aider/scrape.py +++ b/aider/scrape.py @@ -134,9 +134,6 @@ class Scraper: return content - def get_playwright_instructions(self): - return - def scrape_with_httpx(self, url): import httpx