From 69aea3980e2e3c848ae1c7b0ce7539bbdc8daf27 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sat, 19 Oct 2019 09:19:28 -0700 Subject: Remove unused imports (#147) Discovered using the command: flake8 --select F401 . --- 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 ac4de17..60582cd 100644 --- a/examples/simpleSQL.py +++ b/examples/simpleSQL.py @@ -8,11 +8,11 @@ from pyparsing import Word, delimitedList, Optional, \ Group, alphas, alphanums, Forward, oneOf, quotedString, \ infixNotation, opAssoc, \ - ZeroOrMore, restOfLine, CaselessKeyword, pyparsing_common as ppc + restOfLine, CaselessKeyword, pyparsing_common as ppc # define SQL tokens selectStmt = Forward() -SELECT, FROM, WHERE, AND, OR, IN, IS, NOT, NULL = map(CaselessKeyword, +SELECT, FROM, WHERE, AND, OR, IN, IS, NOT, NULL = map(CaselessKeyword, "select from where and or in is not null".split()) NOT_NULL = NOT + NULL -- cgit v1.2.1