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/abap.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/abap.py')
-rw-r--r-- | contrib/python/Pygments/py3/pygments/styles/abap.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/python/Pygments/py3/pygments/styles/abap.py b/contrib/python/Pygments/py3/pygments/styles/abap.py index cdb8e9e75d..ab322df9cf 100644 --- a/contrib/python/Pygments/py3/pygments/styles/abap.py +++ b/contrib/python/Pygments/py3/pygments/styles/abap.py @@ -13,7 +13,11 @@ from pygments.token import Keyword, Name, Comment, String, Error, \ Number, Operator +__all__ = ['AbapStyle'] + + class AbapStyle(Style): + name = 'abap' styles = { Comment: 'italic #888', |