(self, command, *, send_args=(None, None), recv_args=(None, None))
| 22 | 'read_termination': '\n'}} |
| 23 | |
| 24 | def query(self, command, *, send_args=(None, None), recv_args=(None, None)): |
| 25 | answer = super().query(command, send_args=send_args, recv_args=recv_args) |
| 26 | if answer == 'ERROR': |
| 27 | raise InstrumentError |
| 28 | return answer |
| 29 | |
| 30 | @Feat() |
| 31 | def idn(self): |
no outgoing calls
no test coverage detected