From 44aad914a3cea1b6e39cf5db7bebeafb59191707 Mon Sep 17 00:00:00 2001 From: Evgeny Zinoviev Date: Thu, 7 Sep 2023 01:32:58 +0300 Subject: util: Addr.fromstring(): minor rcode style fix --- include/py/homekit/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/py/homekit/util.py b/include/py/homekit/util.py index 11e7116..22bba86 100644 --- a/include/py/homekit/util.py +++ b/include/py/homekit/util.py @@ -60,7 +60,7 @@ class Addr: if not colons: host = addr - port= None + port = None else: host, port = addr.split(':') -- cgit v1.2.3