When I write Python code in VS code, it takes too much control of how it looks, which to me makes it harder to follow. Is there a way i can stop it auto wrapping lines?
What I want:
tn.write(('print(sci:StateString())' + '\n').encode('ascii'))
state = (tn.read_until(b"> ").strip(b"> ").decode('ascii'))
state = state.rstrip()
What I'm getting:
tn.write(
('print(sci:StateString())' + '\n').encode('ascii'))
state = (tn.read_until(b"> ").strip(
b"> ").decode('ascii'))
state = state.rstrip()