From 0b3bc4bd4d508c6748c49bd99d84319e1ab7ec69 Mon Sep 17 00:00:00 2001 From: jacoblee93 Date: Mon, 29 Jul 2024 15:08:49 -0700 Subject: [PATCH] Format --- docs/core_docs/scripts/validate_notebook.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core_docs/scripts/validate_notebook.ts b/docs/core_docs/scripts/validate_notebook.ts index 247d6b010559..878af7f607c9 100644 --- a/docs/core_docs/scripts/validate_notebook.ts +++ b/docs/core_docs/scripts/validate_notebook.ts @@ -2,7 +2,7 @@ import * as fs from "node:fs"; import * as ts from "typescript"; export function extract(filepath: string) { - const cells = JSON.parse((fs.readFileSync(filepath)).toString()).cells; + const cells = JSON.parse(fs.readFileSync(filepath).toString()).cells; const code = cells .map((cell: Record) => { if (cell.cell_type === "code") {