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...
This commit is contained in:
parent
20ded1ba3e
commit
2971a24c56
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ REQUIREMENTS = ['knxip==0.3.3']
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
DEFAULT_HOST = '0.0.0.0'
|
DEFAULT_HOST = '0.0.0.0'
|
||||||
DEFAULT_PORT = '3671'
|
DEFAULT_PORT = 3671
|
||||||
DOMAIN = 'knx'
|
DOMAIN = 'knx'
|
||||||
|
|
||||||
EVENT_KNX_FRAME_RECEIVED = 'knx_frame_received'
|
EVENT_KNX_FRAME_RECEIVED = 'knx_frame_received'
|
||||||
|
|
Loading…
Add table
Reference in a new issue