We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c23592 commit bf2ba77Copy full SHA for bf2ba77
refex/rxerr_debug.py
@@ -56,9 +56,9 @@ def main(argv):
56
except KeyError:
57
pass
58
else:
59
- print(
60
- pygments.highlight(tb, lexers.PythonTracebackLexer(),
61
- formatters.Terminal256Formatter()))
+ lexer = lexers.PythonTracebackLexer() # pytype: disable=module-attr
+ formatter = formatters.Terminal256Formatter() # pytype: disable=module-attr
+ print(pygments.highlight(tb, lexer, formatter))
62
63
64
if __name__ == '__main__':
0 commit comments