diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2022-01-07 15:34:56 -0500 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2022-01-07 15:34:56 -0500 |
commit | 45b894cff83d1ff4769ba9b128adf7ca9653bd7e (patch) | |
tree | 77a42483e705f6615ccf2d1e4ec6096ac6d2f6ef | |
parent | 59c4a81efae1b847b11cbd6ff57de710da20c719 (diff) | |
download | qolab-45b894cff83d1ff4769ba9b128adf7ca9653bd7e.tar.gz qolab-45b894cff83d1ff4769ba9b128adf7ca9653bd7e.zip |
remove debug
-rw-r--r-- | qolab/hardware/i_server/i800.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/qolab/hardware/i_server/i800.py b/qolab/hardware/i_server/i800.py index 7061482..b7b2fc9 100644 --- a/qolab/hardware/i_server/i800.py +++ b/qolab/hardware/i_server/i800.py @@ -38,7 +38,6 @@ class I800(BasicInstrument): s.send(qstr.encode('ascii')) reply = s.recv(100).decode('ascii') s.close() - print(f'{reply=}') rlist=reply.split(); # occasionally there is more than one reply, it also removes \r reply=rlist[-1]; # we will use the last one if reply[0:5] != f'{modbus_cmnd}': |