summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/gui/color.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/ranger/gui/color.py b/ranger/gui/color.py
index eec70661..6c73f99a 100644
--- a/ranger/gui/color.py
+++ b/ranger/gui/color.py
@@ -47,9 +47,3 @@ underline  = curses.A_UNDERLINE
 invisible  = curses.A_INVIS
 
 default_colors = (default, default, normal)
-
-def remove_attr(integer, attribute):
-    """Remove an attribute from an integer"""
-    if integer & attribute:
-        return integer ^ attribute
-    return integer