-
Notifications
You must be signed in to change notification settings - Fork 298
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use ipynb extension to serialize and drop ICell #15383
Conversation
210207c
to
5db82ec
Compare
b376ca3
to
1778aeb
Compare
@@ -102,8 +102,8 @@ export interface IInteractiveWindow extends IInteractiveBase { | |||
expandAllCells(): Promise<void>; | |||
collapseAllCells(): Promise<void>; | |||
scrollToCell(id: string): void; | |||
exportAs(cells?: ICell[]): void; | |||
export(cells?: ICell[]): void; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Never passed anywhere.
@@ -34,7 +33,6 @@ export type LoadIPyWidgetClassLoadAction = { | |||
}; | |||
|
|||
export enum InteractiveWindowMessages { | |||
FinishCell = 'finish_cell', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Never used
@@ -293,34 +288,6 @@ function updateExecutionCount(arg: VariableReducerArg<{ executionCount: number } | |||
}); | |||
} | |||
|
|||
function handleFinishCell(arg: VariableReducerArg<IFinishCell>): IVariableState { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Never used
Fixes #15380