Skip to content

Commit 54b5167

Browse files
committed
fix tslint error
1 parent 08ac7da commit 54b5167

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/serialmonitor/serialportctrl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export class SerialPortCtrl {
7373
return resolve();
7474
}
7575

76-
this._currentSerialPort.write("TestingOpen" + '\r\n', (err) => {
76+
this._currentSerialPort.write("TestingOpen" + "\r\n", (err) => {
7777
// TODO: Fix this on the serial port lib: https://github.com/EmergingTechnologyAdvisors/node-serialport/issues/795
7878
if (err && !(err.message.indexOf("Writing to COM port (GetOverlappedResult): Unknown error code 121") >= 0)) {
7979
this._outputChannel.appendLine(`[Error] Failed to open the serial port - ${this._currentPort}`);

0 commit comments

Comments
 (0)