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

View File

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