From 69563da49ceef589127140d3675a05b2ba4c3ae0 Mon Sep 17 00:00:00 2001 From: Will Dean Date: Sat, 16 Nov 2024 07:35:59 -0500 Subject: [PATCH] code format --- scripts/run_notebooks/runner.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/run_notebooks/runner.py b/scripts/run_notebooks/runner.py index 957ecd38..45ab6e62 100644 --- a/scripts/run_notebooks/runner.py +++ b/scripts/run_notebooks/runner.py @@ -138,7 +138,12 @@ class RunParams(TypedDict): def run_parameters(notebook_paths: list[Path], mock: bool = True) -> list[RunParams]: def to_mock(notebook_path: Path, i: int) -> RunParams: - return RunParams(notebook_path=notebook_path, mock=mock, i=i, total=len(notebook_paths)) + return RunParams( + notebook_path=notebook_path, + mock=mock, + i=i, + total=len(notebook_paths), + ) return [to_mock(notebook_path, i=i) for i, notebook_path in enumerate(notebook_paths, start=1)]