core/homeassistant/components/smarty/entity.py

10 lines
248 B
Python
Raw Normal View History

2024-10-25 10:46:46 +00:00
"""Smarty Entity class."""
from homeassistant.helpers.update_coordinator import CoordinatorEntity
from .coordinator import SmartyCoordinator
class SmartyEntity(CoordinatorEntity[SmartyCoordinator]):
"""Representation of a Smarty Entity."""