From 4c5801ee8c856c58ac74de9634857649336f299f Mon Sep 17 00:00:00 2001 From: springstan <46536646+springstan@users.noreply.github.com> Date: Mon, 23 Dec 2019 17:34:57 +0100 Subject: [PATCH] Add cast to state of Dyson Air Quality Sensor (#30100) --- homeassistant/components/dyson/sensor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/dyson/sensor.py b/homeassistant/components/dyson/sensor.py index c51f46c7790..2fdd3cd6c1f 100644 --- a/homeassistant/components/dyson/sensor.py +++ b/homeassistant/components/dyson/sensor.py @@ -195,5 +195,5 @@ class DysonAirQualitySensor(DysonSensor): def state(self): """Return Air Quality value.""" if self._device.environmental_state: - return self._device.environmental_state.volatil_organic_compounds + return int(self._device.environmental_state.volatil_organic_compounds) return None -- GitLab