Skip to content

Commit 0cc098c

Browse files
committed
[core] removed highlighting from printing util functions
1 parent 83e5cc3 commit 0cc098c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/instrumentman/utils.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,12 @@ def print_style(
100100
style: str | Style,
101101
newline: bool = True
102102
) -> None:
103-
console.print(message, style=style, end="\n" if newline else "")
103+
console.print(
104+
message,
105+
style=style,
106+
end="\n" if newline else "",
107+
highlight=False
108+
)
104109

105110

106111
def print_warning(

0 commit comments

Comments
 (0)