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: