From c18cb47cbfd0b7189947f053ad9aaa633cdc6baa Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Mon, 7 Sep 2020 19:53:59 +0200 Subject: [PATCH] fix doc-string --- custom_components/circadian_lighting/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/circadian_lighting/__init__.py b/custom_components/circadian_lighting/__init__.py index aafbd5ed..903bb8e6 100755 --- a/custom_components/circadian_lighting/__init__.py +++ b/custom_components/circadian_lighting/__init__.py @@ -97,7 +97,7 @@ _DOMAIN_SCHEMA = vol.Schema( def _all_unique_profiles(value): - """Validate that each hub configured has a unique profiles.""" + """Validate that all enties have a unique profile name.""" hosts = [device[CONF_PROFILE] for device in value] schema = vol.Schema(vol.Unique()) schema(hosts)