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/excelExpr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/excelExpr.py') diff --git a/examples/excelExpr.py b/examples/excelExpr.py index 913d65b..57a3f90 100644 --- a/examples/excelExpr.py +++ b/examples/excelExpr.py @@ -5,7 +5,7 @@ # A partial implementation of a parser of Excel formula expressions. # from pyparsing import (CaselessKeyword, Suppress, Word, alphas, - alphanums, nums, Optional, Group, oneOf, Forward, Regex, + alphanums, nums, Optional, Group, oneOf, Forward, infixNotation, opAssoc, dblQuotedString, delimitedList, Combine, Literal, QuotedString, ParserElement, pyparsing_common) ParserElement.enablePackrat() -- cgit v1.2.1