mirror of
https://github.com/home-assistant/core.git
synced 2026-04-02 00:20:30 +01:00
27 lines
883 B
Python
27 lines
883 B
Python
"""Base entity for Chess.com integration."""
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
from homeassistant.helpers.device_registry import DeviceEntryType, DeviceInfo
|
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import ChessCoordinator
|
|
|
|
|
|
class ChessEntity(CoordinatorEntity[ChessCoordinator]):
|
|
"""Base entity for Chess.com integration."""
|
|
|
|
_attr_has_entity_name = True
|
|
|
|
def __init__(self, coordinator: ChessCoordinator) -> None:
|
|
"""Initialize the entity."""
|
|
super().__init__(coordinator)
|
|
if TYPE_CHECKING:
|
|
assert coordinator.config_entry.unique_id is not None
|
|
self._attr_device_info = DeviceInfo(
|
|
identifiers={(DOMAIN, coordinator.config_entry.unique_id)},
|
|
entry_type=DeviceEntryType.SERVICE,
|
|
manufacturer="Chess.com",
|
|
)
|