Skip to content

Commit

Permalink
Changed: Added color text to success message
Browse files Browse the repository at this point in the history
  • Loading branch information
w-kuipers committed Apr 5, 2023
1 parent e3d5e8a commit 87fa12b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Virtual environment/dist
/venv
/testvenv
/dist
/build
/test
Expand Down
6 changes: 5 additions & 1 deletion src/python_project_minify/python_project_minify.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@
from pathlib import Path
from ignore import get_list
from tqdm import tqdm
from colorama import init, Fore
import os
import python_minifier

## Initialize colorama
init(autoreset=True)

def directory(src, dst):

## Format paths
Expand Down Expand Up @@ -94,6 +98,6 @@ def directory(src, dst):


progress_bar.close()
print("\nMinified.")
print(Fore.GREEN + "\nMinified.")

return

0 comments on commit 87fa12b

Please sign in to comment.