Fixed the range filter unknown argument precision

In HomeAssistant 0.84.3, the range filter would not work due to the unexpected precision filter parameter. 
The default range scheme has been edited to remove the unexpected precision parameter.

Verified and tested.
This commit is contained in:
timkoers 2018-12-18 13:21:08 +01:00 committed by GitHub
parent c59e049050
commit 17fbeb6245
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,7 @@ FILTER_LOWPASS_SCHEMA = FILTER_SCHEMA.extend({
default=DEFAULT_FILTER_TIME_CONSTANT): vol.Coerce(int),
})
FILTER_RANGE_SCHEMA = FILTER_SCHEMA.extend({
FILTER_RANGE_SCHEMA = vol.Schema({
vol.Required(CONF_FILTER_NAME): FILTER_NAME_RANGE,
vol.Optional(CONF_FILTER_LOWER_BOUND): vol.Coerce(float),
vol.Optional(CONF_FILTER_UPPER_BOUND): vol.Coerce(float),