From 97bf75a6d27a9d6321566a9af1dfa1ddb4950f2c Mon Sep 17 00:00:00 2001 From: David Bures <12524436+PiDiBi@users.noreply.github.com> Date: Wed, 26 Jun 2024 15:33:50 -0700 Subject: [PATCH] weather back to 4 lines --- locationdata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locationdata.py b/locationdata.py index 5ed27f7..6203906 100644 --- a/locationdata.py +++ b/locationdata.py @@ -8,7 +8,7 @@ import requests # pip install requests import bs4 as bs # pip install beautifulsoup4 URL_TIMEOUT = 10 # wait time for URL requests -DAYS_OF_WEATHER = 2 # weather forecast days, the first two rows are today and tonight +DAYS_OF_WEATHER = 4 # weather forecast days, the first two rows are today and tonight # unified error messages to be able to test them from tests NO_DATA_NOGPS = "no location data: does your device have GPS?" ERROR_FETCHING_DATA = "error fetching data"