1
0

Minor style changes

This commit is contained in:
Benoit Verret
2021-03-21 00:34:25 -04:00
parent 9609a60ab6
commit f731c38293
45 changed files with 116 additions and 119 deletions

View File

@@ -167,7 +167,7 @@ def deserialize_proxy(s: str) -> Optional[dict]:
return None
if s.lower() == 'none':
return None
proxy = { "mode":"socks5", "host":"localhost" }
proxy = {"mode":"socks5", "host":"localhost"}
# FIXME raw IPv6 address fails here
args = s.split(':')
n = 0