From 6cb004b7702a0110b5952f41349f8628280b1f56 Mon Sep 17 00:00:00 2001 From: G Johansson Date: Thu, 24 Nov 2022 22:34:39 +0100 Subject: [PATCH] Selector for SingleEntitySelectorConfig allow domain to be a list (#82666) --- homeassistant/helpers/selector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/helpers/selector.py b/homeassistant/helpers/selector.py index b759ab65826..c7a4be175fb 100644 --- a/homeassistant/helpers/selector.py +++ b/homeassistant/helpers/selector.py @@ -94,7 +94,7 @@ class SingleEntitySelectorConfig(TypedDict, total=False): """Class to represent a single entity selector config.""" integration: str - domain: str + domain: str | list[str] device_class: str