6 lines
154 B
Python
6 lines
154 B
Python
"""A sensor that monitors trends in other components."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "trend"
|
|
PLATFORMS = [Platform.BINARY_SENSOR]
|