summaryrefslogtreecommitdiff
path: root/examples/protobuf_parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/protobuf_parser.py')
-rw-r--r--examples/protobuf_parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/protobuf_parser.py b/examples/protobuf_parser.py
index 9be2c7e..ad5db3a 100644
--- a/examples/protobuf_parser.py
+++ b/examples/protobuf_parser.py
@@ -6,7 +6,7 @@
#
from pyparsing import (Word, alphas, alphanums, Regex, Suppress, Forward,
- Group, oneOf, ZeroOrMore, Optional, delimitedList, Keyword,
+ Group, oneOf, ZeroOrMore, Optional, delimitedList,
restOfLine, quotedString, Dict)
ident = Word(alphas+"_",alphanums+"_").setName("identifier")