We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c08245f commit ad149eaCopy full SHA for ad149ea
custom_components/airthings_wave/sensor.py
@@ -234,5 +234,5 @@ def update(self):
234
if self._sensor_specifics.unit_scale is None:
235
self._state = value
236
else:
237
- self._state = round(float(value * self._sensor_specifics.unit_scale, 2))
+ self._state = round(float(value * self._sensor_specifics.unit_scale), 2)
238
_LOGGER.debug("State {} {}".format(self._name, self._state))
0 commit comments