]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
proxy-echo: apply "ruff check --fix"
authorYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 17 May 2026 17:51:35 +0000 (02:51 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 17 May 2026 17:51:35 +0000 (02:51 +0900)
test/integration-tests/TEST-74-AUX-UTILS/TEST-74-AUX-UTILS.units/proxy-echo.py

index 827ce6af0670f587e716da857acd75fc7d9befe9..f4a4b25ad435cf7769ec7e52711da9856d9719ed 100755 (executable)
@@ -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: