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/htmlStripper.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'examples/htmlStripper.py') diff --git a/examples/htmlStripper.py b/examples/htmlStripper.py index eb35c70..bd99b77 100644 --- a/examples/htmlStripper.py +++ b/examples/htmlStripper.py @@ -6,10 +6,9 @@ # # Copyright (c) 2006, 2016, Paul McGuire # -import urllib.parse, urllib.error from urllib.request import urlopen from pyparsing import (makeHTMLTags, commonHTMLEntity, replaceHTMLEntity, - htmlComment, anyOpenTag, anyCloseTag, LineEnd, OneOrMore, replaceWith) + htmlComment, anyOpenTag, anyCloseTag, LineEnd, replaceWith) scriptOpen, scriptClose = makeHTMLTags("script") scriptBody = scriptOpen + scriptOpen.tag_body + scriptClose -- cgit v1.2.1