From 6951b6f60bb09680030b2719247da21bd997fcf4 Mon Sep 17 00:00:00 2001 From: Igor Shults Date: Fri, 14 Oct 2016 02:09:52 -0500 Subject: [PATCH] Allow any positive integer for Z-Wave polling intensity (#3859) --- homeassistant/components/zwave/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 homeassistant/components/zwave/__init__.py diff --git a/homeassistant/components/zwave/__init__.py b/homeassistant/components/zwave/__init__.py old mode 100644 new mode 100755 index 954a8331b56..75c2546795f --- a/homeassistant/components/zwave/__init__.py +++ b/homeassistant/components/zwave/__init__.py @@ -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({