Fix Zeroconf manifest schema in hassfest script (#49006)

This commit is contained in:
Simone Chemelli
2021-04-10 16:45:53 +02:00
committed by GitHub
parent e7a3308efa
commit 157c1d0ed2

View File

@@ -74,6 +74,7 @@ MANIFEST_SCHEMA = vol.Schema(
{
vol.Required("type"): str,
vol.Optional("macaddress"): vol.All(str, verify_uppercase),
vol.Optional("manufacturer"): vol.All(str, verify_lowercase),
vol.Optional("name"): vol.All(str, verify_lowercase),
}
),