Allow any positive integer for Z-Wave polling intensity (#3859)

This commit is contained in:
Igor Shults 2016-10-14 02:09:52 -05:00 committed by Paulus Schoutsen
parent 6ca0d4cd14
commit 6951b6f60b

2
homeassistant/components/zwave/__init__.py Normal file → Executable file
View File

@ -133,7 +133,7 @@ SET_CONFIG_PARAMETER_SCHEMA = vol.Schema({
CUSTOMIZE_SCHEMA = vol.Schema({
vol.Optional(CONF_POLLING_INTENSITY):
vol.All(cv.positive_int, vol.In([0, 1, 2, 3, 4, 5])),
vol.All(cv.positive_int),
})
CONFIG_SCHEMA = vol.Schema({