Skip to content

Commit 9c995b1

Browse files
authored
Codefix: There's a new black version (#330)
1 parent adf05a5 commit 9c995b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

master_server/openttd/udp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def _detect_source_ip_port(self, socket_addr, data, is_socks=False):
7070
# Example how 'proxy' looks:
7171
# PROXY UDP4 127.0.0.1 127.0.0.1 33487 12345
7272

73-
(_, _, ip, _, port, _) = proxy.split(" ")
73+
_, _, ip, _, port, _ = proxy.split(" ")
7474
source = Source(self, socket_addr, ip, int(port))
7575

7676
return source, data

0 commit comments

Comments
 (0)