summaryrefslogtreecommitdiff
path: root/python/highlight.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-06-24 09:19:08 -0400
committerPeter LaFosse <peter@vector35.com>2021-09-05 10:08:09 -0400
commitd37f7abfe4c1b23426b0fbdc85ae31788602ff28 (patch)
treeff106d8d52afc7cb4d85a1378a41e5c72a288c7d /python/highlight.py
parente0389d244e6211126267e060a9c61a1e75481b76 (diff)
Don't inherit from object anymore
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