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/stackish.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/stackish.py') diff --git a/examples/stackish.py b/examples/stackish.py index 3fa98f4..d33d4de 100644 --- a/examples/stackish.py +++ b/examples/stackish.py @@ -29,7 +29,7 @@ SPACE White space is basically ignored. This is interesting because since """ from pyparsing import Suppress,Word,nums,alphas,alphanums,Combine,oneOf,\ - Optional,QuotedString,Forward,Group,ZeroOrMore,printables,srange + Optional,QuotedString,Forward,Group,ZeroOrMore,srange MARK,UNMARK,AT,COLON,QUOTE = map(Suppress,"[]@:'") -- cgit v1.2.1