summaryrefslogtreecommitdiff
path: root/examples/fourFn.py
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2019-10-19 09:19:28 -0700
committerPaul McGuire <ptmcg@users.noreply.github.com>2019-10-19 11:19:27 -0500
commit69aea3980e2e3c848ae1c7b0ce7539bbdc8daf27 (patch)
tree3d7ddf5bce1982a4ed217dd5fbeaf59c08d74ad7 /examples/fourFn.py
parentb268114a0da1dc306cdcb9359ffa5a09bd99089f (diff)
downloadpyparsing-git-69aea3980e2e3c848ae1c7b0ce7539bbdc8daf27.tar.gz
Remove unused imports (#147)
Discovered using the command: flake8 --select F401 .
Diffstat (limited to 'examples/fourFn.py')
-rw-r--r--examples/fourFn.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/fourFn.py b/examples/fourFn.py
index e07125f..e5be215 100644
--- a/examples/fourFn.py
+++ b/examples/fourFn.py
@@ -11,7 +11,7 @@
# Copyright 2003-2019 by Paul McGuire
#
from pyparsing import (Literal, Word, Group, Forward, alphas, alphanums, Regex, ParseException,
- CaselessKeyword, Suppress, delimitedList, pyparsing_common as ppc, tokenMap)
+ CaselessKeyword, Suppress, delimitedList)
import math
import operator