Skip to content

Commit

Permalink
[rules] use default pygments style for rule formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sdrave committed Apr 27, 2017
1 parent e47dc05 commit 05698eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pymor/algorithms/rules.py
Expand Up @@ -46,7 +46,7 @@ def __repr__(self):
from pygments import highlight
from pygments.lexers import PythonLexer
from pygments.formatters import Terminal256Formatter
return highlight(self.source, PythonLexer(), Terminal256Formatter(style='native'))
return highlight(self.source, PythonLexer(), Terminal256Formatter())
except ImportError:
return self.source

Expand Down

0 comments on commit 05698eb

Please sign in to comment.