Update utils.py

Changed the colour/highlight to "cyan" instead of "blue" for easy noticing.
This commit is contained in:
AG
2023-03-24 20:50:45 +05:30
committed by GitHub
parent a8552e6b96
commit fbb348bc82

View File

@@ -16,7 +16,7 @@ import capa.render.result_document as rd
def bold(s: str) -> str:
"""draw attention to the given string"""
return termcolor.colored(s, "blue")
return termcolor.colored(s, "cyan")
def bold2(s: str) -> str: