Remove some unused variables (#3301)

I have noticed unused variables that seem superfluous.
This commit is contained in:
Kristjan ESPERANTO
2023-12-23 07:27:02 +01:00
committed by GitHub
parent 786ea86e0e
commit 4e7b68a69d
6 changed files with 4 additions and 7 deletions

View File

@@ -397,7 +397,7 @@ WeatherProvider.register("openmeteo", {
generateWeatherObjectsFromForecast(weathers) {
const days = [];
weathers.daily.forEach((weather, i) => {
weathers.daily.forEach((weather) => {
const currentWeather = new WeatherObject();
currentWeather.date = weather.time;