Skip to content

Commit

Permalink
Fix typo in StdIn message handler
Browse files Browse the repository at this point in the history
Closes #793
  • Loading branch information
lionel- committed Jun 28, 2023
1 parent baa01f5 commit 7fdf62e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/jupyter-adapter/src/JupyterKernel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ export class JupyterKernel extends EventEmitter implements vscode.Disposable {
});

// Connect the Stdin socket
this._stdin?.onMessage((...args: any[]) => {
this._stdin?.onMessage((args: any[]) => {
const msg = deserializeJupyterMessage(args, this._session!.key, this._channel);
if (msg !== null) {
// If this is an input request, save the header so we can
Expand Down

0 comments on commit 7fdf62e

Please sign in to comment.