diff options
author | Larry Price <larry@industrialintellect.com> | 2013-11-29 20:58:18 -0800 |
---|---|---|
committer | Larry Price <larry@industrialintellect.com> | 2013-11-29 20:58:18 -0800 |
commit | 55753c7ea58f310db0f625c48d7d403dad2e48d9 (patch) | |
tree | 2dfda2328504622fcc32c280eca87b33556a0abe | |
parent | 55aad0042b2430a4ab09a4ed8633a653eb1a66ef (diff) | |
download | pygments-55753c7ea58f310db0f625c48d7d403dad2e48d9.tar.gz |
removing trailing whitespace. To correct errors.
-rw-r--r-- | pygments/lexers/cypher.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/pygments/lexers/cypher.py b/pygments/lexers/cypher.py index f996e02b..fb3f4319 100644 --- a/pygments/lexers/cypher.py +++ b/pygments/lexers/cypher.py @@ -35,7 +35,7 @@ class CypherLexer(RegexLexer): aliases = ['cypher'] filenames = ['*.cyp','*.cypher'] flags = re.MULTILINE | re.IGNORECASE - + tokens = { 'root': [ include('comment'), @@ -50,7 +50,7 @@ class CypherLexer(RegexLexer): r'|foreach|not| by ', Keyword)], 'clauses': [(r' all | any | as | asc |create|create unique|delete|' r'desc |distinct|foreach| in |is null|limit|match|none|' - r'order by|return|set|skip|single|start|union|where|with', + r'order by|return|set|skip|single|start|union|where|with', Keyword)], 'relations': [(r'-->|-\[.*\]->|<-\[.*\]-|<--|\[|\]', Operator), (r'<|>|<>|=|<=|=>|\(|\)|\||:|,|;', Punctuation)], @@ -58,5 +58,3 @@ class CypherLexer(RegexLexer): } - - |