summaryrefslogtreecommitdiff
path: root/examples/fourFn.py
diff options
context:
space:
mode:
authorPaul McGuire <ptmcg@users.noreply.github.com>2018-12-24 12:31:34 -0600
committerGitHub <noreply@github.com>2018-12-24 12:31:34 -0600
commit7ee59bf9bec777b5a3f627dc2cfbde637ce9ebfc (patch)
treef420a7400fcd664e4cce5312f5a4690b9fedd921 /examples/fourFn.py
parent40deba322583925ad62d0afe2333b9301964ab69 (diff)
parent4f5c0933a0dce78641c097a8a060dfc103fef4b7 (diff)
downloadpyparsing-git-7ee59bf9bec777b5a3f627dc2cfbde637ce9ebfc.tar.gz
Merge pull request #57 from jdufresne/unused
Remove unused imports throughout project
Diffstat (limited to 'examples/fourFn.py')
-rw-r--r--examples/fourFn.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/fourFn.py b/examples/fourFn.py
index 484aa45..e1393b6 100644
--- a/examples/fourFn.py
+++ b/examples/fourFn.py
@@ -9,8 +9,8 @@
#
# Copyright 2003-2009 by Paul McGuire
#
-from pyparsing import Literal,CaselessLiteral,Word,Group,Optional,\
- ZeroOrMore,Forward,nums,alphas,alphanums,Regex,ParseException,\
+from pyparsing import Literal,Word,Group,\
+ ZeroOrMore,Forward,alphas,alphanums,Regex,ParseException,\
CaselessKeyword, Suppress
import math
import operator