From 4e9b2f5608cc719cb8e06495a44d83b1b4b02930 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Tue, 24 Aug 2021 10:20:57 +0200 Subject: [PATCH] change variable name --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 22c3382..6956585 100644 --- a/main.py +++ b/main.py @@ -78,9 +78,9 @@ class Scraper: def work(self) -> str: """Call all the others methods.""" session = self.connect() - link = self.search(session) + topics = self.search(session) - return link + return topics def save(elements): """Save all the results parsed to a CSV file."""