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

Commit 2153e0b

Browse files
committed
linter
1 parent 1b14dd8 commit 2153e0b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ import { IKernel, IKernelSpecs } from '@jupyterlite/kernel';
1212

1313
import { XeusServerKernel } from './xeus_server_kernel';
1414

15+
export * from './worker';
16+
1517
import logo32 from '../style/logos/python-logo-32x32.png';
1618

1719
import logo64 from '../style/logos/python-logo-64x64.png';

src/xeus_server_kernel.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export class XeusServerKernel implements IKernel {
3838
this._location = location;
3939
this._sendMessage = sendMessage;
4040
this._worker = new Worker(new URL('./worker.js', import.meta.url), {
41-
type: 'module',
41+
type: 'module'
4242
});
4343
this._worker.onmessage = e => {
4444
this._processWorkerMessage(e.data);

0 commit comments

Comments
 (0)