Blackened

This commit is contained in:
Joel Collins 2019-12-18 14:58:51 +00:00
parent 5a0188abd3
commit 15a6f13cd5
4 changed files with 5 additions and 5 deletions

View file

@ -213,9 +213,9 @@ class ExtensibleSerialInstrument(object):
return self.read_multiline(termination_line)
else:
logging.debug("Reading response...")
line = (
self.readline(timeout).strip()
) # question: should we strip the final newline?
line = self.readline(
timeout
).strip() # question: should we strip the final newline?
logging.debug(f"Read finished. Got {line}")
return line