From 23520a5ac1cc468a49a59d6c8f6a5a3a280fd7f8 Mon Sep 17 00:00:00 2001 From: Sindre Kjelsrud Date: Mon, 8 Jan 2024 14:21:44 +0100 Subject: [PATCH] :truck: rename variable for easier understanding Co-authored-by: haraldnilsen Signed-off-by: Sindre Kjelsrud --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 576fe50..f9100cb 100644 --- a/main.py +++ b/main.py @@ -69,7 +69,7 @@ def fetch_all_info(url): return signatur studenterspor_url = "https://www.studenterspor.no/ajax_handler.php" -urls = fetch_question_url(studenterspor_url) +question_urls = fetch_question_url(studenterspor_url) -for url in urls: +for url in question_urls: print(fetch_all_info(url)) \ No newline at end of file