Fix missing integer cast in squeezebox config flow (#47846)

This commit is contained in:
Raj Laud 2021-03-13 01:34:20 -06:00 committed by GitHub
parent eccdf85b29
commit 30f99177c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,7 +80,7 @@ class SqueezeboxConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
return
self.discovery_info = {
CONF_HOST: server.host,
CONF_PORT: server.port,
CONF_PORT: int(server.port),
"uuid": server.uuid,
}
_LOGGER.debug("Discovered server: %s", self.discovery_info)