change variable name
This commit is contained in:
parent
c2efc864d4
commit
4e9b2f5608
1 changed files with 2 additions and 2 deletions
4
main.py
4
main.py
|
@ -78,9 +78,9 @@ class Scraper:
|
||||||
def work(self) -> str:
|
def work(self) -> str:
|
||||||
"""Call all the others methods."""
|
"""Call all the others methods."""
|
||||||
session = self.connect()
|
session = self.connect()
|
||||||
link = self.search(session)
|
topics = self.search(session)
|
||||||
|
|
||||||
return link
|
return topics
|
||||||
|
|
||||||
def save(elements):
|
def save(elements):
|
||||||
"""Save all the results parsed to a CSV file."""
|
"""Save all the results parsed to a CSV file."""
|
||||||
|
|
Reference in a new issue