aboutsummaryrefslogtreecommitdiff
path: root/colorcode.py
diff options
context:
space:
mode:
authorLionel <lionel.miquel46@gmail.com>2018-10-21 14:53:51 +0200
committerLionel <lionel.miquel46@gmail.com>2018-10-21 14:53:51 +0200
commitb3ee49d174a35bbf4da6b1c60059795fdb88f710 (patch)
tree8b6c371d02eb30cd0ec874004dbabb0d8e93d33f /colorcode.py
parent7fbd76c1e51bf1cc3094b7d2286668cd839675fe (diff)
downloadrandopitons-b3ee49d174a35bbf4da6b1c60059795fdb88f710.tar.gz
randopitons-b3ee49d174a35bbf4da6b1c60059795fdb88f710.zip
Finally I'll rewrite it in bash i find it more readable than my python scripts. Will plan on a powershell version too
Diffstat (limited to 'colorcode.py')
-rw-r--r--colorcode.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/colorcode.py b/colorcode.py
deleted file mode 100644
index e120109..0000000
--- a/colorcode.py
+++ /dev/null
@@ -1,22 +0,0 @@
-# coding: utf-8
-#Simplified color codes here for error/warning/ok and the such.. messages
-#
-#class Colorcode:
-# def __init__(self):
-# self.endcolor='\033[0m'
-# self.bold='\033[1m'
-# self.header='\033[95m'
-# self.okblue='\033[94m'
-# self.okgreen='\033[92m'
-# self.warn='\033[93m'
-# self.fail='\033[91m'
-# self.underline='\033[4m'
-
-endc='\033[0m'
-bold='\033[1m'
-head='\033[95m'
-okblue='\033[94m'
-okgreen='\033[92m'
-warn='\033[93m'
-fail='\033[91m'
-underline='\033[4m'