vscode-error-lens icon indicating copy to clipboard operation
vscode-error-lens copied to clipboard

Error decorations persist in jupyter notebooks (ipynb) after resolution

Open sfc-gh-catkinson opened this issue 11 months ago • 12 comments

When the errors origin lies in a different code cell after resolution the decoration still persists:

Reproducing:

  1. create a new jupyter notebook

  2. create a new code cell containing

    mymessage = "something very interesting"

  3. Create s econd code cell containing

    print(mymessages)

image

  1. Run the two cells , decoration highlights the name error correctly

image

  1. Correct the second cells value to:

    print(mymessage)

  2. Run the second cell. the code runs successfully, but the error decoration persists

image

sfc-gh-catkinson avatar Nov 28 '24 13:11 sfc-gh-catkinson