util: Addr.fromstring(): minor rcode style fix

This commit is contained in:
Evgeny Zinoviev 2023-09-07 01:32:58 +03:00
parent 949eec3dc9
commit 44aad914a3

View File

@ -60,7 +60,7 @@ class Addr:
if not colons: if not colons:
host = addr host = addr
port= None port = None
else: else:
host, port = addr.split(':') host, port = addr.split(':')