From e57608688dfab787d106040f0764fad05ec098a8 Mon Sep 17 00:00:00 2001 From: Lennard Beers Date: Tue, 6 Feb 2024 18:44:17 +0100 Subject: [PATCH] fix: remove name from config --- custom_components/eq3btsmart/__init__.py | 1 - eq3btsmart/thermostat_config.py | 1 - 2 files changed, 2 deletions(-) diff --git a/custom_components/eq3btsmart/__init__.py b/custom_components/eq3btsmart/__init__.py index 9095d04..e59e4f8 100644 --- a/custom_components/eq3btsmart/__init__.py +++ b/custom_components/eq3btsmart/__init__.py @@ -77,7 +77,6 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: thermostat_config = ThermostatConfig( mac_address=mac_address, - name=name, ) try: diff --git a/eq3btsmart/thermostat_config.py b/eq3btsmart/thermostat_config.py index 1fbfbba..0c78764 100644 --- a/eq3btsmart/thermostat_config.py +++ b/eq3btsmart/thermostat_config.py @@ -4,4 +4,3 @@ @dataclass class ThermostatConfig: mac_address: str - name: str