From 4f5c0933a0dce78641c097a8a060dfc103fef4b7 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Mon, 24 Dec 2018 08:59:21 -0500 Subject: 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/ --- examples/simpleSQL.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/simpleSQL.py') 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 -- cgit v1.2.1