Update to pyenvisalink 2.2, and remove range validation on zonedump i… (#8981)
* Update to pyenvisalink 2.2, and remove range validation on zonedump interval. * Keep using default timer dump variable, only remove minimum check. * Fix lint issue * Indentation issue
This commit is contained in:
parent
f114263845
commit
95663f8126
2 changed files with 5 additions and 5 deletions
|
@ -16,7 +16,7 @@ from homeassistant.helpers.entity import Entity
|
|||
from homeassistant.helpers.discovery import async_load_platform
|
||||
from homeassistant.helpers.dispatcher import async_dispatcher_send
|
||||
|
||||
REQUIREMENTS = ['pyenvisalink==2.1']
|
||||
REQUIREMENTS = ['pyenvisalink==2.2']
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
@ -74,9 +74,9 @@ CONFIG_SCHEMA = vol.Schema({
|
|||
vol.All(vol.Coerce(int), vol.Range(min=3, max=4)),
|
||||
vol.Optional(CONF_EVL_KEEPALIVE, default=DEFAULT_KEEPALIVE):
|
||||
vol.All(vol.Coerce(int), vol.Range(min=15)),
|
||||
vol.Optional(CONF_ZONEDUMP_INTERVAL,
|
||||
default=DEFAULT_ZONEDUMP_INTERVAL):
|
||||
vol.All(vol.Coerce(int), vol.Range(min=15)),
|
||||
vol.Optional(
|
||||
CONF_ZONEDUMP_INTERVAL,
|
||||
default=DEFAULT_ZONEDUMP_INTERVAL): vol.Coerce(int),
|
||||
}),
|
||||
}, extra=vol.ALLOW_EXTRA)
|
||||
|
||||
|
|
|
@ -576,7 +576,7 @@ pyeight==0.0.7
|
|||
pyemby==1.4
|
||||
|
||||
# homeassistant.components.envisalink
|
||||
pyenvisalink==2.1
|
||||
pyenvisalink==2.2
|
||||
|
||||
# homeassistant.components.sensor.fido
|
||||
pyfido==1.0.1
|
||||
|
|
Loading…
Add table
Reference in a new issue