From 57fd99923dac754c11b7229af183107cb9a6526d Mon Sep 17 00:00:00 2001 From: Andy C Date: Thu, 9 Jan 2025 22:39:47 -0500 Subject: [PATCH] [test/lint] Caught typo in last commit --- doctools/oils_doc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doctools/oils_doc.py b/doctools/oils_doc.py index 88217624a..0cf43de6a 100755 --- a/doctools/oils_doc.py +++ b/doctools/oils_doc.py @@ -309,7 +309,7 @@ def PrintHighlighted(self, out): code = html.ToText(self.s, self.start_pos, self.end_pos) lexer = pygments.lexers.get_lexer_by_name(self.lang) - formatter = pyments.formatters.HtmlFormatter() + formatter = pygments.formatters.HtmlFormatter() highlighted = pygments.highlight(code, lexer, formatter) out.Print(highlighted)