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

@ -34,13 +34,13 @@ from .hon import HonEntity, unique_entities, get_readable
_LOGGER = logging.getLogger(__name__)
@dataclass
@dataclass(frozen=True)
class HonConfigSensorEntityDescription(SensorEntityDescription):
entity_category: EntityCategory = EntityCategory.DIAGNOSTIC
option_list: dict[int, str] | None = None
@dataclass
@dataclass(frozen=True)
class HonSensorEntityDescription(SensorEntityDescription):
option_list: dict[int, str] | None = None