mirror of
https://github.com/home-assistant/core.git
synced 2025-05-12 09:59:20 +00:00
11 lines
227 B
Python
11 lines
227 B
Python
"""Shared constants."""
|
|
from homeassistant.components import vacuum
|
|
|
|
MQTT_VACUUM_ATTRIBUTES_BLOCKED = frozenset(
|
|
{
|
|
vacuum.ATTR_BATTERY_ICON,
|
|
vacuum.ATTR_BATTERY_LEVEL,
|
|
vacuum.ATTR_FAN_SPEED,
|
|
}
|
|
)
|