Issue #45: test fix.

This commit is contained in:
Sergey Vartanov 2021-05-28 11:34:07 +03:00
parent 4b88b64f86
commit 02459a6af0

View file

@ -156,7 +156,7 @@ class WayMatcher(Matcher):
style: Dict[str, Any] = structure["style"]
for key in style:
if str(style[key]).endswith("_color"):
self.style[key] = scheme.get_color(style[key])
self.style[key] = scheme.get_color(style[key]).hex.upper()
else:
self.style[key] = style[key]
self.priority = 0