From 416708105daccc75d1c37787b7af359f11519239 Mon Sep 17 00:00:00 2001 From: Josiah Baldwin Date: Mon, 25 Jul 2022 19:40:51 -0700 Subject: [PATCH] Remove unneeded print statement in post hook --- hooks/post_gen_project.py | 1 - 1 file changed, 1 deletion(-) diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index 3f60bb7..f92535a 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -18,7 +18,6 @@ def remove_main_if_lib(): main_file_path = os.path.join('{{ cookiecutter.repo_name }}', '__main__.py') if not (is_lib == "y" or is_lib == "Y"): os.remove(main_file_path) - print(main_file_path) SUCCESS = "\x1b[1;32m" INFO = "\x1b[1;33m"