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 Paulus Schoutsen
parent b8070567bf
commit b01131ab9d

View File

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