From 95df5b9ec98a2cd370187ddb89d558605cfb96f4 Mon Sep 17 00:00:00 2001 From: Glenn de Haan Date: Fri, 13 Feb 2026 20:50:26 +0100 Subject: [PATCH] Fix incorrect type HDFury select platform (#162948) --- homeassistant/components/hdfury/select.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/homeassistant/components/hdfury/select.py b/homeassistant/components/hdfury/select.py index 7866b07e0f4..20227bd9dc3 100644 --- a/homeassistant/components/hdfury/select.py +++ b/homeassistant/components/hdfury/select.py @@ -3,13 +3,7 @@ from collections.abc import Awaitable, Callable from dataclasses import dataclass -from hdfury import ( - OPERATION_MODES, - TX0_INPUT_PORTS, - TX1_INPUT_PORTS, - HDFuryAPI, - HDFuryError, -) +from hdfury import OPERATION_MODES, TX0_INPUT_PORTS, TX1_INPUT_PORTS, HDFuryError from homeassistant.components.select import SelectEntity, SelectEntityDescription from homeassistant.core import HomeAssistant @@ -27,7 +21,7 @@ PARALLEL_UPDATES = 1 class HDFurySelectEntityDescription(SelectEntityDescription): """Description for HDFury select entities.""" - set_value_fn: Callable[[HDFuryAPI, str], Awaitable[None]] + set_value_fn: Callable[[HDFuryCoordinator, str], Awaitable[None]] SELECT_PORTS: tuple[HDFurySelectEntityDescription, ...] = (