From c91a1e60ec8e048d4c478acb8f6e778d9b0b0b50 Mon Sep 17 00:00:00 2001 From: Rock Pie <139387589+rock3tsprocket@users.noreply.github.com> Date: Sun, 26 Jan 2025 16:08:11 +0100 Subject: [PATCH] wrong letter at line 76 (you typed a p instead of an a) --- customcommands/webscraper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/customcommands/webscraper.py b/customcommands/webscraper.py index b124c90..4c7f8ce 100644 --- a/customcommands/webscraper.py +++ b/customcommands/webscraper.py @@ -73,7 +73,7 @@ class WebScraper(commands.Cog): soup = BeautifulSoup(html, "html.parser") - for paragraph in soup.find_all('p'): + for paragraph in soup.find_all('a'): sentences = self.extract_sentences(paragraph.get_text()) self.save_to_json(sentences)