Fix template error in sql (#71169)

pull/71173/head
G Johansson 2022-05-01 22:04:03 +02:00 committed by GitHub
parent 63e3095062
commit 5b25b94a22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ _QUERY_SCHEME = vol.Schema(
vol.Required(CONF_NAME): cv.string,
vol.Required(CONF_QUERY): cv.string,
vol.Optional(CONF_UNIT_OF_MEASUREMENT): cv.string,
vol.Optional(CONF_VALUE_TEMPLATE): cv.template,
vol.Optional(CONF_VALUE_TEMPLATE): cv.string,
}
)