summaryrefslogtreecommitdiff
path: root/scripts/utils.py
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2019-10-01 15:34:58 +0200
committerFlorian Bruhin <me@the-compiler.org>2019-10-01 15:34:58 +0200
commitd44213199cc093c68824d3c09d744da61f35dadc (patch)
tree963ea3324203c6cb9a28e5e90fe5f60a714a13f9 /scripts/utils.py
parent2033ed1955b642cbcd2bc4ea88d361c340fb3d38 (diff)
downloadqutebrowser-d44213199cc093c68824d3c09d744da61f35dadc.tar.gz
qutebrowser-d44213199cc093c68824d3c09d744da61f35dadc.zip
Remove unused scripts.utils.term_attributes
Diffstat (limited to 'scripts/utils.py')
-rw-r--r--scripts/utils.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/utils.py b/scripts/utils.py
index d4e606ebc..6467c915c 100644
--- a/scripts/utils.py
+++ b/scripts/utils.py
@@ -52,14 +52,6 @@ fg_colors = {
bg_colors = {name: col + 10 for name, col in fg_colors.items()}
-term_attributes = {
- 'bright': 1,
- 'dim': 2,
- 'normal': 22,
- 'reset': 0,
-}
-
-
def _esc(code):
"""Get an ANSI color code based on a color number."""
return '\033[{}m'.format(code)