Skip to content

Commit 69563da

Browse files
committed
code format
1 parent dfd3321 commit 69563da

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

scripts/run_notebooks/runner.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,12 @@ class RunParams(TypedDict):
138138

139139
def run_parameters(notebook_paths: list[Path], mock: bool = True) -> list[RunParams]:
140140
def to_mock(notebook_path: Path, i: int) -> RunParams:
141-
return RunParams(notebook_path=notebook_path, mock=mock, i=i, total=len(notebook_paths))
141+
return RunParams(
142+
notebook_path=notebook_path,
143+
mock=mock,
144+
i=i,
145+
total=len(notebook_paths),
146+
)
142147

143148
return [to_mock(notebook_path, i=i) for i, notebook_path in enumerate(notebook_paths, start=1)]
144149

0 commit comments

Comments
 (0)