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)