Update runze_multiple_backbone

This commit is contained in:
Xuwznln
2025-09-14 01:04:50 +08:00
parent bdf27a7e82
commit 9e214c56c1

View File

@@ -176,12 +176,9 @@ class RunzeMultiplePump:
return output
def _receive(self, data: bytes) -> str:
"""
Do not change this method.
"""
if not data:
return ""
ascii_string = "".join(chr(byte) for byte in data)
ascii_string = "".join(chr(byte) for byte in data) # *Do not use decode('ascii', errors='ignore')
return ascii_string
def _run(self, address: str, command: str) -> str: