summaryrefslogtreecommitdiff
path: root/pygments/lexers/graph.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2022-10-27 07:19:07 +0200
committerGeorg Brandl <georg@python.org>2022-10-27 11:58:29 +0200
commit11dac32db5db1166b8d55dc85bc16d2085936c9a (patch)
treec5e59cbabf10790754b4f2bc915ed87b2dba8c09 /pygments/lexers/graph.py
parent2b45339f7d6966b1780b28f3b792266f0f48214c (diff)
downloadpygments-git-11dac32db5db1166b8d55dc85bc16d2085936c9a.tar.gz
all: style fixes
Diffstat (limited to 'pygments/lexers/graph.py')
-rw-r--r--pygments/lexers/graph.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pygments/lexers/graph.py b/pygments/lexers/graph.py
index de10e502..69e5bf15 100644
--- a/pygments/lexers/graph.py
+++ b/pygments/lexers/graph.py
@@ -77,10 +77,10 @@ class CypherLexer(RegexLexer):
(r'(using)(\s+)(periodic)(\s+)(commit)\b',
bygroups(Keyword, Whitespace, Keyword, Whitespace, Keyword)),
(words((
- 'all', 'any', 'as', 'asc', 'ascending', 'assert', 'call', 'case', 'create',
- 'delete', 'desc', 'descending', 'distinct', 'end', 'fieldterminator',
- 'foreach', 'in', 'limit', 'match', 'merge', 'none', 'not', 'null',
- 'remove', 'return', 'set', 'skip', 'single', 'start', 'then', 'union',
+ 'all', 'any', 'as', 'asc', 'ascending', 'assert', 'call', 'case', 'create',
+ 'delete', 'desc', 'descending', 'distinct', 'end', 'fieldterminator',
+ 'foreach', 'in', 'limit', 'match', 'merge', 'none', 'not', 'null',
+ 'remove', 'return', 'set', 'skip', 'single', 'start', 'then', 'union',
'unwind', 'yield', 'where', 'when', 'with'), suffix=r'\b'), Keyword),
],
'relations': [