wrong letter at line 76 (you typed a p instead of an a)

This commit is contained in:
Rock Pie 2025-01-26 16:08:11 +01:00 committed by GitHub
parent 5d818a905e
commit c91a1e60ec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -73,7 +73,7 @@ class WebScraper(commands.Cog):
soup = BeautifulSoup(html, "html.parser") 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()) sentences = self.extract_sentences(paragraph.get_text())
self.save_to_json(sentences) self.save_to_json(sentences)