Skip to content

Commit

Permalink
Remove launch_binder
Browse files Browse the repository at this point in the history
  • Loading branch information
Yxwww committed May 25, 2022
1 parent 188b2e5 commit feb05c7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/blocks/notebook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export interface PartialNotebook {
metadata: NotebookBlockMetadata;
order: ChildId[];
children: BlockChildDict;
launch_binder: string | null;
}

export const defaultFormat = NotebookFormatTypes.jupyter;
Expand All @@ -36,6 +35,5 @@ export function fromDTO(json: JsonObject): PartialNotebook {
metadata: json.metadata ?? {},
order: [...(json?.order ?? [])],
children: { ...json.children },
launch_binder: json.launch_binder ?? null,
};
}

0 comments on commit feb05c7

Please sign in to comment.