From 3e4fa1e2022970dee003bea0932ea0c10f8744ba Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Thu, 25 May 2023 14:26:12 +0100 Subject: Tests: removed unused variables. --- test/test_proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_proxy.py') diff --git a/test/test_proxy.py b/test/test_proxy.py index 74e48ca1..2f1775cb 100644 --- a/test/test_proxy.py +++ b/test/test_proxy.py @@ -39,7 +39,7 @@ Content-Length: 10 """ while True: - connection, client_address = sock.accept() + connection, _ = sock.accept() data = recvall(connection).decode() -- cgit