From cb78d9f7830000f0ef89e04909554fd103ac8b07 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Wed, 26 Nov 2025 14:11:13 +1100 Subject: [PATCH] Black --- bouquin/markdown_highlighter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bouquin/markdown_highlighter.py b/bouquin/markdown_highlighter.py index 8077842..3fa6d38 100644 --- a/bouquin/markdown_highlighter.py +++ b/bouquin/markdown_highlighter.py @@ -118,7 +118,7 @@ class MarkdownHighlighter(QSyntaxHighlighter): # Markdown syntax (the markers themselves) - make invisible self.syntax_format = QTextCharFormat() # Use the editor background color so they blend in - bg = pal.color(QPalette.Base) + bg = pal.color(QPalette.Base) hidden = QColor(bg) hidden.setAlpha(0) self.syntax_format.setForeground(hidden)