From 8d778c0b7cfa490f7d544ece4b0e2ef4f2575aaa Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 30 May 2025 16:35:27 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- hooks/post_gen_project.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index a38740829..f49a90ae0 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -105,11 +105,13 @@ def remove_vendors_js(): if vendors_js_path.exists(): vendors_js_path.unlink() + def remove_project_css(): project_css_path = Path("{{ cookiecutter.project_slug }}", "static", "css", "project.css") if project_css_path.exists(): project_css_path.unlink() + def remove_packagejson_file(): file_names = ["package.json"] for file_name in file_names: