Skip to content

Commit 33cbd7c

Browse files
committed
resolved linter issues
1 parent 2fbb944 commit 33cbd7c

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

src/client/jupyter/jupyter_client/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export class JupyterClientAdapter extends EventEmitter implements IJupyterClient
2727

2828
public dispose() {
2929
try {
30-
this.ipythonAdapter.sendKernelCommand(this.lastStartedKernelUUID, KernelCommand.shutdown)
30+
this.ipythonAdapter.sendKernelCommand(this.lastStartedKernelUUID, KernelCommand.shutdown);
3131
}
3232
catch (ex) {
3333
}

src/test/extension.jupyter.comms.jupyterClient.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import * as assert from 'assert';
99

1010
// You can import and use all API from the 'vscode' module
1111
// as well as import your extension to test it
12-
import * as vscode from 'vscode';
1312
import { JupyterClientAdapter } from '../client/jupyter/jupyter_client/main';
1413
import * as mocks from './mockClasses';
1514
import { KernelRestartedError, KernelShutdownError } from '../client/jupyter/common/errors';
@@ -328,7 +327,6 @@ suite('JupyterClient', () => {
328327
// interrupt this kernel immediately
329328
jupyter.interruptKernel(startedInfo[0]).then(() => {
330329
// Do nothing
331-
const y = '';
332330
}, reason => {
333331
assert.fail(reason, null, 'Failed to interrupt the kernel', '');
334332
});

0 commit comments

Comments
 (0)