Upgrade PyISY to v2.1.0, add support for variable precision (#42043)

This commit is contained in:
shbatm 2020-10-18 11:45:15 -05:00 committed by GitHub
parent d96a1744f0
commit 941453dca9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 12 additions and 10 deletions

View file

@ -94,13 +94,12 @@ def _fetch_isy_configuration(
password,
use_https,
tls_ver,
log=_LOGGER,
webroot=webroot,
)
except ValueError as err:
raise InvalidAuth(err.args[0]) from err
return Configuration(log=_LOGGER, xml=isy_conn.get_config())
return Configuration(xml=isy_conn.get_config())
class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):