coloring fixes

This commit is contained in:
2025-04-03 17:07:37 -04:00
parent 73db5a78e5
commit 51e4d200a7
3 changed files with 49 additions and 16 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ def highlight_code(code: str, language: str = 'py') -> None:
try:
lexer = get_lexer_by_name(language)
except ValueError:
debugMod.log("Warning: Language not recognized. Printing without highlighting.")
# debugMod.log("Warning: Language not recognized. Printing without highlighting.")
return code
formatter = TerminalFormatter()