From dfdb9e12a1658e1e5f44c2f4384d6059fc8c0741 Mon Sep 17 00:00:00 2001 From: Christopher Fenner Date: Mon, 24 Jun 2024 11:53:51 +0200 Subject: [PATCH] fix eslint findings --- netatmo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netatmo.js b/netatmo.js index 77d7305..fda4181 100755 --- a/netatmo.js +++ b/netatmo.js @@ -82,7 +82,7 @@ Module.register('netatmo', { }, this.config.updateInterval * 60 * 1000 + this.config.initialDelay * 1000) }, updateUnitOfMeasurements (userPreferences) { - if (this.config.unitOfMeasurementWind === ''){ + if (this.config.unitOfMeasurementWind === '') { this.config.unitOfMeasurementWind = this.convertNetatmoWindUnit(userPreferences.windunit) console.log('Using user preferred unit of measurement for wind values %o', this.config.unitOfMeasurementWind) }