From 237909c164bce186a70582a21957b952ec353d39 Mon Sep 17 00:00:00 2001 From: sageTheDM Date: Fri, 11 Oct 2024 10:15:11 +0200 Subject: [PATCH] weather.py comments --- py/weather.py | 1 + 1 file changed, 1 insertion(+) 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,