Refactor "scotty"; new "utils" module
[pywienerlinien] / gotovienna / utils.py
1 # -*- coding: utf-8 -*-
2
3 def inred(x):
4     return '\033[91m' + x + '\033[0m'
5
6 def ingreen(x):
7     return '\033[92m' + x + '\033[0m'
8
9 def inblue(x):
10     return '\033[94m' + x + '\033[0m'
11