From 2971a24c56048ce7dd819c65732acc36347da2f3 Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Fri, 5 May 2017 19:19:24 -0400 Subject: [PATCH] Fix object type for default KNX port #7429 describes a TypeError that is raised if the port is omitted in the config for the KNX component (integer is required (got type str)). This commit changes the default port from a string to an integer. I expect this will resolve that issue... --- homeassistant/components/knx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/knx.py b/homeassistant/components/knx.py index f72a3048dec..ff951e55810 100644 --- a/homeassistant/components/knx.py +++ b/homeassistant/components/knx.py @@ -18,7 +18,7 @@ REQUIREMENTS = ['knxip==0.3.3'] _LOGGER = logging.getLogger(__name__) DEFAULT_HOST = '0.0.0.0' -DEFAULT_PORT = '3671' +DEFAULT_PORT = 3671 DOMAIN = 'knx' EVENT_KNX_FRAME_RECEIVED = 'knx_frame_received'