Adjust _ENTITY_COMPONENTS in hass-enforce-class-module (#126603)

This commit is contained in:
epenet
2024-09-24 12:19:39 +02:00
committed by GitHub
parent 711e0ee503
commit acebf1fb48
5 changed files with 14 additions and 5 deletions

View File

@ -76,16 +76,23 @@ _MODULES: dict[str, set[str]] = {
}
_ENTITY_COMPONENTS: set[str] = {platform.value for platform in Platform}.union(
{
"alert",
"automation",
"counter",
"dominos",
"input_boolean",
"input_button",
"input_datetime",
"input_number",
"input_select",
"input_text",
"microsoft_face",
"person",
"plant",
"remember_the_milk",
"schedule",
"script",
"tag",
"template",
"timer",
}
)