Upgrade toonlib to 1.1.3 (#18189)

This commit is contained in:
Fabian Affolter 2018-11-04 17:22:03 +01:00 committed by Anders Melchiorsen
parent dbf721cd2c
commit e161dc3b77
2 changed files with 6 additions and 6 deletions

View file

@ -4,17 +4,17 @@ Toon van Eneco Support.
For more details about this component, please refer to the documentation at
https://home-assistant.io/components/toon/
"""
import logging
from datetime import datetime, timedelta
import logging
import voluptuous as vol
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
import homeassistant.helpers.config_validation as cv
from homeassistant.const import (CONF_USERNAME, CONF_PASSWORD)
from homeassistant.helpers.discovery import load_platform
from homeassistant.util import Throttle
REQUIREMENTS = ['toonlib==1.0.2']
REQUIREMENTS = ['toonlib==1.1.3']
_LOGGER = logging.getLogger(__name__)
@ -62,8 +62,8 @@ def setup(hass, config):
class ToonDataStore:
"""An object to store the Toon data."""
def __init__(self, username, password, gas=DEFAULT_GAS,
solar=DEFAULT_SOLAR):
def __init__(
self, username, password, gas=DEFAULT_GAS, solar=DEFAULT_SOLAR):
"""Initialize Toon."""
from toonlib import Toon

View file

@ -1488,7 +1488,7 @@ tikteck==0.4
todoist-python==7.0.17
# homeassistant.components.toon
toonlib==1.0.2
toonlib==1.1.3
# homeassistant.components.alarm_control_panel.totalconnect
total_connect_client==0.20