1
mirror of https://github.com/home-assistant/core synced 2024-08-31 05:57:13 +02:00

Cast lametric cycles parameter to int (#19370)

This commit is contained in:
jumpkick 2018-12-17 18:14:55 -05:00 committed by Martin Hjelmare
parent d270d52cb5
commit f1005d37a7

View File

@ -85,7 +85,7 @@ class LaMetricNotificationService(BaseNotificationService):
_LOGGER.error("Sound ID %s unknown, ignoring",
data["sound"])
if "cycles" in data:
cycles = data['cycles']
cycles = int(data['cycles'])
if "priority" in data:
if data['priority'] in AVAILABLE_PRIORITIES:
priority = data['priority']