summaryrefslogtreecommitdiff
path: root/examples/protobuf_parser.py
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2019-10-19 09:19:28 -0700
committerPaul McGuire <ptmcg@users.noreply.github.com>2019-10-19 11:19:27 -0500
commit69aea3980e2e3c848ae1c7b0ce7539bbdc8daf27 (patch)
tree3d7ddf5bce1982a4ed217dd5fbeaf59c08d74ad7 /examples/protobuf_parser.py
parentb268114a0da1dc306cdcb9359ffa5a09bd99089f (diff)
downloadpyparsing-git-69aea3980e2e3c848ae1c7b0ce7539bbdc8daf27.tar.gz
Remove unused imports (#147)
Discovered using the command: flake8 --select F401 .
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 52ce434..e1657b4 100644
--- a/examples/protobuf_parser.py
+++ b/examples/protobuf_parser.py
@@ -6,7 +6,7 @@
#
from pyparsing import (Word, alphas, alphanums, Regex, Suppress, Forward,
- Keyword, Group, oneOf, ZeroOrMore, Optional, delimitedList,
+ Group, oneOf, ZeroOrMore, Optional, delimitedList,
restOfLine, quotedString, Dict)
ident = Word(alphas+"_",alphanums+"_").setName("identifier")