Skip to content

Commit 81a1b2f

Browse files
authored
disable highlighter rich (#5972)
1 parent 3c564ab commit 81a1b2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reflex/utils/console.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
from reflex.utils.decorator import once
2222

2323
# Console for pretty printing.
24-
_console = Console()
25-
_console_stderr = Console(stderr=True)
24+
_console = Console(highlight=False)
25+
_console_stderr = Console(stderr=True, highlight=False)
2626

2727
# The current log level.
2828
_LOG_LEVEL = LogLevel.INFO

0 commit comments

Comments
 (0)