Closed zhouwangyang closed 3 years ago
Thanks for your feedback @zhouwangyang and also thanks you for providing the code that creates the issue, it is incredibly helpful. I was able to reproduce it.
This is a dupe of #https://github.com/microsoft/vscode-python/issues/11151. It should be fixed in our latest release.
Environment data
Expected behaviour
The file should open in the web browser and contain the output from the Interactive Window
Actual behaviour
An invalid notebook may not function properly.The validation error was:
Steps to reproduce:
import pandas as pd
import matplotlib.pyplot as plt
%% Matplotlib Plot
x = np.linspace(0, 20, 100)
plt.plot(x, np.sin(x))
plt.show()