Fix Zeroconf manifest schema in hassfest script (#49006)

pull/49017/head
Simone Chemelli 2021-04-10 16:45:53 +02:00 committed by GitHub
parent e7a3308efa
commit 157c1d0ed2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

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),
}
),