Bump regenmaschine to 2.1.0 (#38649)

This commit is contained in:
Aaron Bach 2020-08-07 18:01:55 -06:00 committed by GitHub
parent 353817337e
commit 4cceb4ad0a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 11 deletions

View file

@ -1,5 +1,5 @@
"""Config flow to configure the RainMachine component."""
from regenmaschine import login
from regenmaschine import Client
from regenmaschine.errors import RainMachineError
import voluptuous as vol
@ -59,12 +59,12 @@ class RainMachineFlowHandler(config_entries.ConfigFlow, domain=DOMAIN):
self._abort_if_unique_id_configured()
websession = aiohttp_client.async_get_clientsession(self.hass)
client = Client(session=websession)
try:
await login(
await client.load_local(
user_input[CONF_IP_ADDRESS],
user_input[CONF_PASSWORD],
websession,
port=user_input[CONF_PORT],
ssl=user_input.get(CONF_SSL, True),
)