diff --git a/py/weather.py b/py/weather.py index 41444c3..c64df0b 100644 --- a/py/weather.py +++ b/py/weather.py @@ -15,6 +15,7 @@ class Weather: async with python_weather.Client(unit=unit_type) as client: weather = await client.get(city) + # Collect weather data data = { "temperature": weather.temperature, "humidity": weather.humidity,