diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2023-12-09 00:19:25 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2023-12-09 00:50:41 +0300 |
commit | 83b8a2f9228353759e59a093cb3c1270ea2c9d5b (patch) | |
tree | a90f4f91780c0613bea19f33ff8af8e93a335e8b /contrib/python/Pygments/py3/pygments/styles/xcode.py | |
parent | 460528e80f26d04487dc242b7333d45bbeb43a4d (diff) | |
download | ydb-83b8a2f9228353759e59a093cb3c1270ea2c9d5b.tar.gz |
Update contrib/python/Pygments/py3 to 2.17.2
Diffstat (limited to 'contrib/python/Pygments/py3/pygments/styles/xcode.py')
-rw-r--r-- | contrib/python/Pygments/py3/pygments/styles/xcode.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/python/Pygments/py3/pygments/styles/xcode.py b/contrib/python/Pygments/py3/pygments/styles/xcode.py index 86cab45fbe..87b1323ab8 100644 --- a/contrib/python/Pygments/py3/pygments/styles/xcode.py +++ b/contrib/python/Pygments/py3/pygments/styles/xcode.py @@ -13,11 +13,16 @@ from pygments.token import Keyword, Name, Comment, String, Error, \ Number, Operator, Literal +__all__ = ['XcodeStyle'] + + class XcodeStyle(Style): """ Style similar to the Xcode default colouring theme. """ + name = 'xcode' + styles = { Comment: '#177500', Comment.Preproc: '#633820', |