From cd5053dd71a05b974d7150309cedc89336be6f0d Mon Sep 17 00:00:00 2001 From: Robbin Janssen Date: Wed, 13 Sep 2023 10:01:54 +0200 Subject: [PATCH] Fix device naming issue --- custom_components/ojmicroline_thermostat/climate.py | 1 + 1 file changed, 1 insertion(+) diff --git a/custom_components/ojmicroline_thermostat/climate.py b/custom_components/ojmicroline_thermostat/climate.py index b91505b..af0dc2a 100644 --- a/custom_components/ojmicroline_thermostat/climate.py +++ b/custom_components/ojmicroline_thermostat/climate.py @@ -101,6 +101,7 @@ class OJMicrolineThermostat( ) _attr_temperature_unit = TEMP_CELSIUS _attr_has_entity_name = True + _attr_name = None idx = str options = (Mapping[str, Any],)