From: Yu Watanabe Date: Sun, 17 May 2026 17:51:35 +0000 (+0900) Subject: proxy-echo: apply "ruff check --fix" X-Git-Tag: v261-rc1~126^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c333638ade8fa9ec5ecf5ec3f0d21e229061fcb;p=thirdparty%2Fsystemd.git proxy-echo: apply "ruff check --fix" --- diff --git a/test/integration-tests/TEST-74-AUX-UTILS/TEST-74-AUX-UTILS.units/proxy-echo.py b/test/integration-tests/TEST-74-AUX-UTILS/TEST-74-AUX-UTILS.units/proxy-echo.py index 827ce6af067..f4a4b25ad43 100755 --- a/test/integration-tests/TEST-74-AUX-UTILS/TEST-74-AUX-UTILS.units/proxy-echo.py +++ b/test/integration-tests/TEST-74-AUX-UTILS/TEST-74-AUX-UTILS.units/proxy-echo.py @@ -5,10 +5,10 @@ import socket import sys data = sys.stdin.buffer.read() -s = socket.create_connection(("localhost", 12345), timeout=15) +s = socket.create_connection(('localhost', 12345), timeout=15) s.settimeout(15) s.sendall(data) -received = b"" +received = b'' while len(received) < len(data): chunk = s.recv(65536) if not chunk: