We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8e59c70 + db35a85 commit 5ada72dCopy full SHA for 5ada72d
js/common/plotter.js
@@ -48,7 +48,7 @@ export function plotValues(chartObj, serialMessage, bufferSize) {
48
49
// handle possible tuple in textLine
50
if (textLine.startsWith("(") && textLine.endsWith(")")) {
51
- textValues = textLine.substring(1, textLine.length - 1).trim();
+ let textValues = textLine.substring(1, textLine.length - 1).trim();
52
// Python tuples can end with a comma, but JS arrays cannot
53
if (textValues.endsWith(",")) {
54
textValues = textValues.substring(0, textValues.length - 1);
0 commit comments