summaryrefslogtreecommitdiff
path: root/examples/simpleSQL.py
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-12-24 08:59:21 -0500
committerJon Dufresne <jon.dufresne@gmail.com>2018-12-24 09:38:48 -0500
commit4f5c0933a0dce78641c097a8a060dfc103fef4b7 (patch)
treef420a7400fcd664e4cce5312f5a4690b9fedd921 /examples/simpleSQL.py
parent40deba322583925ad62d0afe2333b9301964ab69 (diff)
downloadpyparsing-git-4f5c0933a0dce78641c097a8a060dfc103fef4b7.tar.gz
Remove unused imports throughout project
Unused imports were discovered using flake8. By removing the unused imports, the code is a bit friendlier to new contributors as it is clearer what is being used and not simply leftover from previous refactoring. The flake8 command: $ flake8 . --select F401 http://flake8.pycqa.org/
Diffstat (limited to 'examples/simpleSQL.py')
-rw-r--r--examples/simpleSQL.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/simpleSQL.py b/examples/simpleSQL.py
index 18e93a0..c64a022 100644
--- a/examples/simpleSQL.py
+++ b/examples/simpleSQL.py
@@ -5,8 +5,8 @@
#
# Copyright (c) 2003,2016, Paul McGuire
#
-from pyparsing import Literal, CaselessLiteral, Word, delimitedList, Optional, \
- Combine, Group, alphas, nums, alphanums, ParseException, Forward, oneOf, quotedString, \
+from pyparsing import Word, delimitedList, Optional, \
+ Group, alphas, alphanums, Forward, oneOf, quotedString, \
ZeroOrMore, restOfLine, CaselessKeyword, pyparsing_common
# define SQL tokens