mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-21 00:59:03 +01:00
prefer-const in notebooks
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user