Skip to content

Commit

Permalink
Remove unneeded print statement in post hook
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterEggnog committed Jul 26, 2022
1 parent 9a4317c commit 4167081
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion hooks/post_gen_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 4167081

Please sign in to comment.