diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2023-09-07 01:32:58 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2023-09-07 01:32:58 +0300 |
commit | 44aad914a3cea1b6e39cf5db7bebeafb59191707 (patch) | |
tree | 29ab9268240ca2b8c835b1d080f77015c16c1b3a /include/py/homekit | |
parent | 949eec3dc9cd37c70fb553e3e3f57decc8c89afc (diff) |
util: Addr.fromstring(): minor rcode style fix
Diffstat (limited to 'include/py/homekit')
-rw-r--r-- | include/py/homekit/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
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(':') |