Add allow extra to totalconnect config schema (#34993)

This commit is contained in:
Austin Mroczek 2020-04-30 18:35:32 -07:00 committed by GitHub
parent a2efc079f1
commit 5699cb8a09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,8 @@ CONFIG_SCHEMA = vol.Schema(
vol.Required(CONF_PASSWORD): cv.string,
}
)
}
},
extra=vol.ALLOW_EXTRA,
)