diff --git a/apis/weather.py b/apis/weather.py index 13ef76e..15d4ee2 100644 --- a/apis/weather.py +++ b/apis/weather.py @@ -28,7 +28,7 @@ class WeatherWrapper: class WeatherScoreCalculator: def calc_weather_score(self, event): - now = datetime.datetime.now().replace(microsecond=0).isoformat() + datetime.timedelta(days=1) + now = (datetime.datetime.now().replace(microsecond=0) + datetime.timedelta(days=1)).isoformat() location = event.location_coordinates location_string = f'{location[0]}'+f','+f'{location[1]}'