From 9e214c56c19af74036192f83884e0699227f13ea Mon Sep 17 00:00:00 2001 From: Xuwznln <18435084+Xuwznln@users.noreply.github.com> Date: Sun, 14 Sep 2025 01:04:50 +0800 Subject: [PATCH] Update runze_multiple_backbone --- unilabos/devices/pump_and_valve/runze_multiple_backbone.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/unilabos/devices/pump_and_valve/runze_multiple_backbone.py b/unilabos/devices/pump_and_valve/runze_multiple_backbone.py index 72dda67d..ab6b286f 100644 --- a/unilabos/devices/pump_and_valve/runze_multiple_backbone.py +++ b/unilabos/devices/pump_and_valve/runze_multiple_backbone.py @@ -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: