diff options
author | streetturtle <streetturtle@gmail.com> | 2020-11-09 15:55:00 -0500 |
---|---|---|
committer | streetturtle <streetturtle@gmail.com> | 2020-11-09 15:55:00 -0500 |
commit | ea3c03835efe8e2b76e9f200b9fcc43a544be304 (patch) | |
tree | 7c05158ea871b775ced2fe9cc956a2ca726bd52f /weather-widget | |
parent | a5ab50defbbb88f5d5b257437d7d4c4cadfe24a7 (diff) |
[weather] remove print statement
Diffstat (limited to 'weather-widget')
-rw-r--r-- | weather-widget/weather.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/weather-widget/weather.lua b/weather-widget/weather.lua index 1465c0c..0317746 100644 --- a/weather-widget/weather.lua +++ b/weather-widget/weather.lua @@ -385,7 +385,6 @@ local function worker(args) hourly_forecast_negative_graph:set_min_value(max_temp < 0 and math.abs(max_temp) * 0.7 or 0) for i, value in ipairs(values) do - print(value) if value >= 0 then hourly_forecast_graph:add_value(value) hourly_forecast_negative_graph:add_value(0) |