Skip to content

Commit

Permalink
fix: kernel completion serialize issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AbaoFromCUG committed Aug 27, 2024
1 parent 2fc448f commit d978bbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ const neopyterPlugin: JupyterFrontEndPlugin<void> = {
}
);
console.log(completionItems);
return completionItems.items.map(({ type, label, insertText, source }) => ({ type, label, insertText, source }));
return completionItems.items.map(({ type, label, insertText }) => ({ type, label, insertText }));
}
};
const cellDispatcher = {
Expand Down

0 comments on commit d978bbb

Please sign in to comment.