aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/Pygments/py3/pygments/styles/xcode.py
diff options
context:
space:
mode:
authorrobot-contrib <robot-contrib@yandex-team.com>2023-12-09 00:19:25 +0300
committerrobot-contrib <robot-contrib@yandex-team.com>2023-12-09 00:50:41 +0300
commit83b8a2f9228353759e59a093cb3c1270ea2c9d5b (patch)
treea90f4f91780c0613bea19f33ff8af8e93a335e8b /contrib/python/Pygments/py3/pygments/styles/xcode.py
parent460528e80f26d04487dc242b7333d45bbeb43a4d (diff)
downloadydb-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.py5
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',