mirror of
https://github.com/esphome/esphome.git
synced 2024-11-29 18:24:13 +01:00
3c243e663f
* dashboard: fire events when entry is updated or state changes * dashboard: fire events when entry is updated or state changes * dashboard: fire events when entry is updated or state changes * tweaks * fixes * remove typing_extensions * rename for asyncio * rename for asyncio * rename for asyncio * preen * lint * lint * move dict converter * lint
8 lines
217 B
Python
8 lines
217 B
Python
from __future__ import annotations
|
|
|
|
EVENT_ENTRY_ADDED = "entry_added"
|
|
EVENT_ENTRY_REMOVED = "entry_removed"
|
|
EVENT_ENTRY_UPDATED = "entry_updated"
|
|
EVENT_ENTRY_STATE_CHANGED = "entry_state_changed"
|
|
|
|
SENTINEL = object()
|