Remove unused imports

This commit is contained in:
Kovid Goyal 2021-12-16 21:36:03 +05:30
parent d350a121d8
commit 535dd78c6f
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -3,15 +3,8 @@
"""
from calibre import strftime
from calibre.web.feeds.news import BasicNewsRecipe
from string import Template
import json
import operator
import re
import tempfile
try:
from urllib.parse import urlencode
except ImportError:
from urllib import urlencode
try:
from urllib.error import HTTPError, URLError
except ImportError: