Skip to content

Commit

Permalink
Fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne committed Dec 20, 2024
1 parent 44016a0 commit 03e52ff
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/webviews/webview-side/ipywidgets/kernel/manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ export class WidgetManager implements IIPyWidgetManager, IMessageHandler {
public async clear(): Promise<void> {
await this.manager?.clear_state();
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
public handleMessage(message: string, payload?: any) {
if (message === IPyWidgetMessages.IPyWidgets_kernelOptions) {
logMessage('Received IPyWidgetMessages.IPyWidgets_kernelOptions');
Expand Down Expand Up @@ -336,6 +337,7 @@ export class WidgetManager implements IIPyWidgetManager, IMessageHandler {
}
}

// eslint-disable-next-line @typescript-eslint/no-explicit-any
private handleUnhandledIOPubMessage(_manager: any, msg: KernelMessage.IIOPubMessage) {
// Send this to the other side
this.postOffice.sendMessage<IInteractiveWindowMapping>(
Expand Down

0 comments on commit 03e52ff

Please sign in to comment.