diff options
Diffstat (limited to 'sphinx/pygments_styles.py')
-rw-r--r-- | sphinx/pygments_styles.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sphinx/pygments_styles.py b/sphinx/pygments_styles.py index c5b07e75f..1046826af 100644 --- a/sphinx/pygments_styles.py +++ b/sphinx/pygments_styles.py @@ -4,14 +4,14 @@ Sphinx theme specific highlighting styles. - :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ from pygments.style import Style from pygments.styles.friendly import FriendlyStyle -from pygments.token import Generic, Comment, Number, Whitespace, Keyword, \ - Operator, Name, String, Error +from pygments.token import (Comment, Error, Generic, Keyword, Name, Number, Operator, String, + Whitespace) class NoneStyle(Style): |