summaryrefslogtreecommitdiff
path: root/python/highlight.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/highlight.py')
-rw-r--r--python/highlight.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/highlight.py b/python/highlight.py
index 539e71a5..59c9025a 100644
--- a/python/highlight.py
+++ b/python/highlight.py
@@ -24,7 +24,7 @@ from . import _binaryninjacore as core
from .enums import HighlightColorStyle, HighlightStandardColor
-class HighlightColor(object):
+class HighlightColor:
def __init__(self, color = None, mix_color = None, mix = None, red = None, green = None, blue = None, alpha = 255):
if (red is not None) and (green is not None) and (blue is not None):
self._style = HighlightColorStyle.CustomHighlightColor