diff --git a/custom_components/daikin_residential/manifest.json b/custom_components/daikin_residential/manifest.json index 6d29d70..66f23a9 100644 --- a/custom_components/daikin_residential/manifest.json +++ b/custom_components/daikin_residential/manifest.json @@ -1,7 +1,7 @@ { "domain": "daikin_residential", "name": "Daikin Residential Controller", - "version": "2.2.2", + "version": "2.3.0", "documentation": "https://github.com/rospogrigio/daikin_residential/", "dependencies": [], "codeowners": [ diff --git a/custom_components/daikin_residential/sensor.py b/custom_components/daikin_residential/sensor.py index 578f435..806be3e 100644 --- a/custom_components/daikin_residential/sensor.py +++ b/custom_components/daikin_residential/sensor.py @@ -231,5 +231,6 @@ def state_class(self): @property def entity_registry_enabled_default(self): - # auto disable these entities when added for the first time except the wifi signal - return (self._device_attribute == ATTR_WIFI_STRENGTH) + # auto disable these entities when added for the first time + # except the wifi signal + return self._device_attribute == ATTR_WIFI_STRENGTH