Fix mypy checks

This commit is contained in:
Andre Basche 2024-01-11 00:41:49 +01:00
parent 3aadb840ab
commit f007777689
6 changed files with 12 additions and 11 deletions

View file

@ -18,12 +18,12 @@ from .hon import HonEntity, unique_entities, get_readable
_LOGGER = logging.getLogger(__name__)
@dataclass
@dataclass(frozen=True)
class HonSelectEntityDescription(SelectEntityDescription):
option_list: dict[int, str] | None = None
@dataclass
@dataclass(frozen=True)
class HonConfigSelectEntityDescription(SelectEntityDescription):
entity_category: EntityCategory = EntityCategory.CONFIG
option_list: dict[int, str] | None = None