diff options
author | Georg Brandl <georg@python.org> | 2012-02-05 12:54:35 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-02-05 12:54:35 +0100 |
commit | c7e77eb6a50245fbcea3849e7c65439156c61206 (patch) | |
tree | fbeee50d1f71f58679789b0c73046a6d8e6fcb23 /pygments/styles/rrt.py | |
parent | 612c67014af9f57154188c5ec5450dee5e2cfce3 (diff) | |
download | pygments-c7e77eb6a50245fbcea3849e7c65439156c61206.tar.gz |
Style fixes.
Diffstat (limited to 'pygments/styles/rrt.py')
-rw-r--r-- | pygments/styles/rrt.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pygments/styles/rrt.py b/pygments/styles/rrt.py index a24d1a28..214f9d93 100644 --- a/pygments/styles/rrt.py +++ b/pygments/styles/rrt.py @@ -10,13 +10,12 @@ """ from pygments.style import Style -from pygments.token import Token, Comment, Name, Keyword, \ - Generic, Number, String, Whitespace +from pygments.token import Comment, Name, Keyword, String class RrtStyle(Style): """ - pygments "rrt" theme, based on Zap and Emacs defaults. + Minimalistic "rrt" theme, based on Zap and Emacs defaults. """ background_color = '#000000' |