summaryrefslogtreecommitdiff
path: root/python/highlight.py
diff options
context:
space:
mode:
authorGalen Williamson <galen@vector35.com>2025-01-28 17:21:56 -0500
committerGalen Williamson <galen@vector35.com>2025-01-28 17:21:56 -0500
commit3afba0617ec797d6b2654f8c9722866776ad0ff6 (patch)
tree1846f129c1c72bbe90af6122ced3e7af6f80e1ea /python/highlight.py
parent7fc1623f3bd90663e84bab236b8052dbd4901b54 (diff)
Fixes #6370: HighlightColor.__init__ attempts to set a property with no setter
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 1f9397a4..5d44f6c3 100644
--- a/python/highlight.py
+++ b/python/highlight.py
@@ -43,7 +43,7 @@ class HighlightColor:
self.green = green
self.blue = blue
elif (mix_color is not None) and (mix is not None):
- self.style = HighlightColorStyle.MixedHighlightColor
+ self._style = HighlightColorStyle.MixedHighlightColor
if color is None:
self.color = HighlightStandardColor.NoHighlightColor
else: