From ae4a691a0411b42c925c879f7b3eaba346d0c43d Mon Sep 17 00:00:00 2001 From: Michael Panchenko Date: Mon, 29 Apr 2024 14:44:53 +0200 Subject: [PATCH] Typo in notebook path (notebook not deleted in hook) --- hooks/post_gen_project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index 4f529fa..b29e58d 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -25,7 +25,7 @@ def delete_line_in_file(filepath: str, line_starts_with: str): if "{{cookiecutter.include_accsr_configuration_utils}}".lower() != "y": remove("config.py") remove("config.json") - remove("docs/02_notebooks/config_example.ipynb") + remove("docs/02_notebooks/02_config_example.ipynb") remove("data") delete_line_in_file("pyproject.toml", "accsr") delete_line_in_file(".gitignore", "config_local.json")