The variables are not drawn correctly, it feels like all the debugging information is being drawn out
Author: Zhangbin-devCreated Feb 19, 2025Updated Feb 19, 2025
import time
if name == 'main':
count = 10
while True:
data = {
"kind": { "plotly": True },
"data": [
{
"x": [1, 2, 3],
"y": [2, 6, 3],
"type": "scatter",
"mode": "lines+markers",
"marker": { "color": "red" },
}
]
}
time.sleep(1)
count += 1
Source: hediet/vscode-debug-visualizer