Skip to content

Commit

Permalink
Merge pull request #34 from curvenote/remove-launch_binder
Browse files Browse the repository at this point in the history
Remove launch_binder
  • Loading branch information
Yxwww authored May 26, 2022
2 parents 188b2e5 + feb05c7 commit 8c20d83
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 8c20d83

Please sign in to comment.