let -> const, notebooks

This commit is contained in:
Rob Lourens
2020-08-01 10:33:03 -07:00
parent 17cffd0ad6
commit 635b397e2d
31 changed files with 244 additions and 244 deletions

View File

@@ -63,7 +63,7 @@ export function activate(context: vscode.ExtensionContext): any {
context.subscriptions.push(vscode.notebook.registerNotebookKernel('notebookKernelTest', ['*.vsctestnb'], {
label: 'Notebook Test Kernel',
executeAllCells: async (_document: vscode.NotebookDocument) => {
let cell = _document.cells[0];
const cell = _document.cells[0];
cell.outputs = [{
outputKind: vscode.CellOutputKind.Rich,