From fff4183f72dcf80d7eb2b206fbe9b0581ba9018e Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Mon, 20 Jan 2025 13:44:46 +0000 Subject: [PATCH] Format comment better --- 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 39fc33d5..1d8309b1 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -80,7 +80,7 @@ def remove_heroku_files(): file_names = ["Procfile", "runtime.txt", "requirements.txt"] for file_name in file_names: if file_name == "requirements.txt" and "{{ cookiecutter.ci_tool }}".lower() == "travis": - # don't remove the file if we are using travisci but not using heroku + # Don't remove the file if we are using Travis CI but not using Heroku continue Path(file_name).unlink() shutil.rmtree("bin")