diff options
author | Paul McGuire <ptmcg@users.noreply.github.com> | 2018-12-24 12:31:34 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-24 12:31:34 -0600 |
commit | 7ee59bf9bec777b5a3f627dc2cfbde637ce9ebfc (patch) | |
tree | f420a7400fcd664e4cce5312f5a4690b9fedd921 /examples/lucene_grammar.py | |
parent | 40deba322583925ad62d0afe2333b9301964ab69 (diff) | |
parent | 4f5c0933a0dce78641c097a8a060dfc103fef4b7 (diff) | |
download | pyparsing-git-7ee59bf9bec777b5a3f627dc2cfbde637ce9ebfc.tar.gz |
Merge pull request #57 from jdufresne/unused
Remove unused imports throughout project
Diffstat (limited to 'examples/lucene_grammar.py')
-rw-r--r-- | examples/lucene_grammar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/lucene_grammar.py b/examples/lucene_grammar.py index fc104e0..0cd7e0d 100644 --- a/examples/lucene_grammar.py +++ b/examples/lucene_grammar.py @@ -8,7 +8,7 @@ #
from pyparsing import (Literal, CaselessKeyword, Forward, Regex, QuotedString, Suppress,
- Optional, Group, FollowedBy, infixNotation, opAssoc, ParseException, ParserElement,
+ Optional, Group, infixNotation, opAssoc, ParserElement,
pyparsing_common)
ParserElement.enablePackrat()
|