Skip to content
This repository was archived by the owner on Feb 14, 2024. It is now read-only.

Commit fd5fa85

Browse files
committed
linter
1 parent 1b14dd8 commit fd5fa85

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/xeus_server_kernel.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,14 @@ export class XeusServerKernel implements IKernel {
2929
*
3030
* @param options The instantiation options for a new XeusServerKernel
3131
*/
32-
33-
xeus_interpreter: any;
3432
constructor(options: XeusServerKernel.IOptions) {
3533
const { id, name, sendMessage, location } = options;
3634
this._id = id;
3735
this._name = name;
3836
this._location = location;
3937
this._sendMessage = sendMessage;
4038
this._worker = new Worker(new URL('./worker.js', import.meta.url), {
41-
type: 'module',
39+
type: 'module'
4240
});
4341
this._worker.onmessage = e => {
4442
this._processWorkerMessage(e.data);

0 commit comments

Comments
 (0)