Skip to content

Commit

Permalink
Fix argparse argument name
Browse files Browse the repository at this point in the history
  • Loading branch information
mariosasko committed Apr 1, 2021
1 parent 82dfd72 commit ba3a9f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/scripts/check_notebooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def check_notebook_output(notebook_path, env="python3", ignore_whitespace=False)
with multiprocess.Pool(num_proc) as pool:
reports = pool.map(partial(check_notebook_output, env=args.env, ignore_whitespace=args.ignore_whitespace), notebook_paths)

if args.keep_artefacts is False:
if args.keep_artifacts is False:
snap_after_exec = list(Path(NOTEBOOKS_PATH).iterdir())
cleanup(snap_before_exec, snap_after_exec)

Expand Down

0 comments on commit ba3a9f8

Please sign in to comment.