From b971cec1bcf68bf91e9f69b7717935a9eda828ff Mon Sep 17 00:00:00 2001 From: mollusk Date: Thu, 17 Sep 2020 23:23:36 -0700 Subject: [PATCH 1/3] correct spelling in comment --- cost-of-smokes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cost-of-smokes.py b/cost-of-smokes.py index f2913c4..5f419a4 100644 --- a/cost-of-smokes.py +++ b/cost-of-smokes.py @@ -1,5 +1,5 @@ #!/usr/bin/python3 -#user input dolloars +#user input dollars #user input number of packs #output day, week, month year costs import os From f64d92dc61c9c47d96b3895f6bba9ef3fd2a260b Mon Sep 17 00:00:00 2001 From: mollusk Date: Fri, 18 Sep 2020 23:27:10 -0700 Subject: [PATCH 2/3] Add ignore file --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ed8ebf5 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +__pycache__ \ No newline at end of file From e1e78aae6e195cc90f8fda8a45b9854b3a02031c Mon Sep 17 00:00:00 2001 From: mollusk Date: Fri, 18 Sep 2020 23:27:30 -0700 Subject: [PATCH 3/3] Add ciglib.py --- ciglib.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ciglib.py diff --git a/ciglib.py b/ciglib.py new file mode 100644 index 0000000..4647db9 --- /dev/null +++ b/ciglib.py @@ -0,0 +1,8 @@ +class fgColor: + GREEN = '\033[92m' + RED = '\033[91m' + YELLOW = '\033[93m' + PURPLE = '\033[95m' + CYAN = '\033[96m' + GRAY = '\033[90m' + NC = '\033[0m' \ No newline at end of file