diff --git a/docs/source/scripts/check_notebooks.py b/docs/source/scripts/check_notebooks.py index 6020388c..ab4442c6 100644 --- a/docs/source/scripts/check_notebooks.py +++ b/docs/source/scripts/check_notebooks.py @@ -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)