prefer-const in notebooks

This commit is contained in:
Rob Lourens
2021-12-30 13:10:02 -08:00
parent 2cf8ae8a13
commit a2655c2e5f
38 changed files with 96 additions and 96 deletions

View File

@@ -50,7 +50,7 @@ class Kernel {
}
protected async _execute(cells: vscode.NotebookCell[]): Promise<void> {
for (let cell of cells) {
for (const cell of cells) {
await this._runCell(cell);
}
}