aboutsummaryrefslogtreecommitdiff
path: root/prototyping/colorcode.py
diff options
context:
space:
mode:
authorLionel <lionel.miquel46@gmail.com>2018-10-31 12:20:09 +0100
committerLionel <lionel.miquel46@gmail.com>2018-10-31 12:20:09 +0100
commit6f8af4d10fa7e0d4a7bd4a6e5c958527e8cd5ed7 (patch)
tree580db1d39ca84a9a75163082c004bea80903f15a /prototyping/colorcode.py
parent687df02d8a8711342d9061b60d06266cc01b0c35 (diff)
downloadrandopitons-6f8af4d10fa7e0d4a7bd4a6e5c958527e8cd5ed7.tar.gz
randopitons-6f8af4d10fa7e0d4a7bd4a6e5c958527e8cd5ed7.zip
Cleaning up the repo
Diffstat (limited to 'prototyping/colorcode.py')
-rw-r--r--prototyping/colorcode.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/prototyping/colorcode.py b/prototyping/colorcode.py
deleted file mode 100644
index e120109..0000000
--- a/prototyping/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'