Removing old println

This commit is contained in:
Florian Hoss 2022-10-31 16:01:34 +01:00
parent 03dc2ae2e7
commit f125272722

View file

@ -37,7 +37,6 @@ func copyWeatherValues(weatherResp *OpenWeatherApiResponse) {
myTime = time.Unix(weatherResp.Sys.Sunset, 0)
CurrentWeather.Sunset = myTime.Format("15:04")
CurrentWeather.Icon = weatherResp.Weather[0].Icon
fmt.Println(weatherResp.Main.Temp)
if Conf.OpenWeather.Digits {
CurrentWeather.Temp = weatherResp.Main.Temp
} else {